mirror of
https://github.com/protobufjs/protobuf.js.git
synced 2025-12-08 20:58:55 +00:00
14 lines
183 B
Protocol Buffer
14 lines
183 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
service MyService {
|
|
rpc MyMethod (MyRequest) returns (MyResponse);
|
|
}
|
|
|
|
message MyRequest {
|
|
string path = 1;
|
|
}
|
|
|
|
message MyResponse {
|
|
int32 status = 2;
|
|
}
|