Skip to content

Instantly share code, notes, and snippets.

@kelseyhightower
Created March 17, 2016 14:55
Show Gist options
  • Save kelseyhightower/f01146c425b3080da80f to your computer and use it in GitHub Desktop.
Save kelseyhightower/f01146c425b3080da80f to your computer and use it in GitHub Desktop.
syntax = "proto3";
service Greeter {
rpc SayHello (HelloRequest) returns (HelloReply) {}
}
message HelloRequest {
string name = 1;
}
message HelloReply {
string message = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment