Skip to content

Instantly share code, notes, and snippets.

@pasdam
Created August 11, 2018 08:40
Show Gist options
  • Save pasdam/98fb5343cb2ed9c3be55148413ae755b to your computer and use it in GitHub Desktop.
Save pasdam/98fb5343cb2ed9c3be55148413ae755b to your computer and use it in GitHub Desktop.
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