protobuf.js/tests/data/rpc.proto
2016-11-30 23:05:57 +01:00

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;
}