Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created June 11, 2020 09:17
Show Gist options
  • Save velotiotech/0f0ec7b5bab49d1dd44064182fe1f238 to your computer and use it in GitHub Desktop.
Save velotiotech/0f0ec7b5bab49d1dd44064182fe1f238 to your computer and use it in GitHub Desktop.
A typical gRPC service definition
service HelloService {
rpc SayHello (HelloRequest) returns (HelloResponse);
}
message HelloRequest {
string greeting = 1;
}
message HelloResponse {
string reply = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment