micro-client-grpc/proto/test.proto
Vasiliy Tolstov fb33535995 use own fork
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2020-09-18 18:27:29 +03:00

19 lines
308 B
Protocol Buffer

syntax = "proto3";
package helloworld;
service Test {
rpc CallNative(Request) returns (Response) {};
rpc CallMicro(Request) returns (Response) {};
rpc Stream(stream Request) returns (stream Response) {};
}
message Request {
string uuid = 1;
string name = 2;
}
message Response {
string msg = 1;
}