micro/server/grpc/proto/test.proto
2019-06-05 10:22:28 +01:00

14 lines
156 B
Protocol Buffer

syntax = "proto3";
service Test {
rpc Call(Request) returns (Response) {}
}
message Request {
string name = 1;
}
message Response {
string msg = 1;
}