micro-server-grpc/proto/test.proto

18 lines
212 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package test;
option go_package = "./;testpb";
service TestService {
rpc Call(CallReq) returns (CallRsp);
}
message CallReq {
string data = 1;
}
message CallRsp {
string data = 1;
}