Created
October 28, 2019 15:15
-
-
Save arbarlow/7bbd9674253b2b15b366b8a474e52988 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
message GetRequest { | |
repeated string ids = 1; | |
} | |
message GetResponse { | |
repeated Order orders = 1; | |
} | |
service Orders { | |
rpc Get(GetRequest) returns (GetResponse); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment