This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
HelloGrpc/protos/hello.proto

14 lines
184 B
Protocol Buffer

syntax = "proto3";
message GreetRequest {
string message = 1;
}
message GreetReply {
string message = 1;
}
service HelloService {
rpc greet(GreetRequest) returns (GreetReply);
}