mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
14 lines
194 B
Protocol Buffer
14 lines
194 B
Protocol Buffer
syntax = "proto3";
|
|
package benchmark;
|
|
|
|
service BenchmarkService {
|
|
rpc Ping(Request) returns (Response);
|
|
}
|
|
|
|
message Request {
|
|
string message = 1;
|
|
}
|
|
|
|
message Response {
|
|
string message = 1;
|
|
} |