micro-tests/server/grpc/proto/test.proto
Vasiliy Tolstov a308d65b9c add some encoding test
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2020-12-29 13:44:22 +03:00

26 lines
316 B
Protocol Buffer

syntax = "proto3";
package helloworld;
option go_package = ".;helloworld";
service Test {
rpc Call(Request) returns (Response) {}
}
message Request {
string uuid = 1;
string name = 2;
Broken broken = 4;
};
message Broken {
string field = 1;
};
message Response {
string msg = 1;
Broken broken = 4;
};