add segmentio codec tests

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2020-11-27 17:46:05 +03:00
parent 81c0a68540
commit f973dd218e
9 changed files with 524 additions and 0 deletions

View File

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