Skip to content

Instantly share code, notes, and snippets.

@KKcorps
Created September 9, 2019 16:14
Show Gist options
  • Save KKcorps/19285782a25c2112aa72ae555f143605 to your computer and use it in GitHub Desktop.
Save KKcorps/19285782a25c2112aa72ae555f143605 to your computer and use it in GitHub Desktop.
greeter.proto
syntax = "proto3";
// 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