HelloGrpc/protos/hello.proto

14 lines
184 B
Protocol Buffer
Raw Normal View History

2020-03-09 20:15:48 +00:00
syntax = "proto3";
message GreetRequest {
string message = 1;
}
message GreetReply {
string message = 1;
}
service HelloService {
rpc greet(GreetRequest) returns (GreetReply);
}