Skip to content

Instantly share code, notes, and snippets.

@shilomagen
Last active July 28, 2021 12:13
Show Gist options
  • Save shilomagen/65379ca76e369801145f954b25460099 to your computer and use it in GitHub Desktop.
Save shilomagen/65379ca76e369801145f954b25460099 to your computer and use it in GitHub Desktop.
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