Last active
July 28, 2021 12:13
-
-
Save shilomagen/65379ca76e369801145f954b25460099 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
service NewService { | |
rpc DoSomething (DoSomethingRequest) returns (DoSomethingResponse) { | |
} | |
} | |
message DoSomethingRequest { | |
string name = 1; | |
int32 age = 2; | |
} | |
message DoSomethingResponse { | |
string id = 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment