micro-tests/codec/segmentio/proto/test.proto
Vasiliy Tolstov 2a6ba611ed regen with never protoc-gen-go
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2021-03-22 00:11:12 +03:00

18 lines
280 B
Protocol Buffer

syntax = "proto3";
package helloworld;
option go_package = "github.com/unistack-org/micro-tests/codec/segmentio/proto;pb";
service Test {
rpc Call(Request) returns (Response) {}
}
message Request {
string uuid = 1;
string name = 2;
}
message Response {
string msg = 1;
}