Skip to content

Instantly share code, notes, and snippets.

@splittingred
Created July 25, 2017 15:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save splittingred/2d19da665a81070177c1592955ef9869 to your computer and use it in GitHub Desktop.
Save splittingred/2d19da665a81070177c1592955ef9869 to your computer and use it in GitHub Desktop.
gruf-bp-proto
syntax = "proto3";
package demo;
service Jobs {
rpc GetJob(GetJobReq) returns (GetJobResp) { }
}
message GetJobReq {
uint64 id = 1;
}
message GetJobResp {
uint64 id = 1;
string name = 2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment