Created
August 11, 2018 08:40
-
-
Save pasdam/98fb5343cb2ed9c3be55148413ae755b to your computer and use it in GitHub Desktop.
This file contains 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"; | |
package example; | |
service Greeter { | |
rpc Hello (GreetingRequest) returns (GreetingReply) {} | |
} | |
message GreetingRequest { | |
string name = 1; | |
} | |
message GreetingReply { | |
string text = 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment