Created
July 25, 2017 15:30
-
-
Save splittingred/2d19da665a81070177c1592955ef9869 to your computer and use it in GitHub Desktop.
gruf-bp-proto
This file contains hidden or 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
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