Created
March 17, 2016 14:55
-
-
Save kelseyhightower/f01146c425b3080da80f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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