micro-tests/client/grpc/proto/test.proto
Vasiliy Tolstov 267b29b658 update after protoc-gen-micro changes
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2021-02-27 13:51:39 +03:00

19 lines
343 B
Protocol Buffer

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