Skip to content

Instantly share code, notes, and snippets.

@jmrobles
Created December 8, 2020 16:19
Show Gist options
  • Save jmrobles/1c4cc59ef74e0567cff02058ab1f6501 to your computer and use it in GitHub Desktop.
Save jmrobles/1c4cc59ef74e0567cff02058ab1f6501 to your computer and use it in GitHub Desktop.
syntax = "proto3";
package helloworld;
service Helloworld {
rpc Call(Request) returns (Response) {}
}
message Request {
string name = 1;
}
message Response {
string msg = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment