Skip to content

Instantly share code, notes, and snippets.

@nsivabalan
Created August 4, 2020 00:03
Show Gist options
  • Save nsivabalan/c1407f016f6a557364bdfade9062ac01 to your computer and use it in GitHub Desktop.
Save nsivabalan/c1407f016f6a557364bdfade9062ac01 to your computer and use it in GitHub Desktop.
package helloworld;
// The greeting service definition.
service Greeter {
// Sends a greeting
rpc SayHello (HelloRequest) returns (HelloReply) {}
}
// The request message containing the user's name.
message HelloRequest {
string name = 1;
}
// The response message containing the greetings
message HelloReply {
string message = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment