grpc-node/packages/proto-loader/test_protos/rpc.proto

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