Last active
October 31, 2017 23:46
-
-
Save travisjeffery/de242a1c2464e4f11b080d10601cc5e1 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
// example.proto | |
service Users { | |
rpc GetUser (GetUserRequest) returns (GetUserResponse) {} | |
} | |
message GetUserResponse { | |
User user = 1; | |
Error error = 2; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment