micro-tests/codec/segmentio/proto/test.proto
Vasiliy Tolstov f973dd218e add segmentio codec tests
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2020-11-27 17:46:05 +03:00

17 lines
196 B
Protocol Buffer

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