Skip to content

Instantly share code, notes, and snippets.

@vitiko
Created July 23, 2019 07:45
Show Gist options
  • Save vitiko/d1447dabdc43a5c4791f8c320b95ba39 to your computer and use it in GitHub Desktop.
Save vitiko/d1447dabdc43a5c4791f8c320b95ba39 to your computer and use it in GitHub Desktop.
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