micro-server-grpc/proto/test.proto

17 lines
196 B
Protocol Buffer
Raw Normal View History

2019-06-05 12:22:28 +03:00
syntax = "proto3";
package helloworld;
2019-06-05 12:22:28 +03:00
service Test {
rpc Call(Request) returns (Response) {}
2019-06-05 12:22:28 +03:00
}
message Request {
string uuid = 1;
string name = 2;
2019-06-05 12:22:28 +03:00
}
message Response {
string msg = 1;
}