Skip to content

Instantly share code, notes, and snippets.

@zoalasaurusrawr
Created March 7, 2019 19:05
Show Gist options
  • Select an option

  • Save zoalasaurusrawr/19a222431c0748fff77e2e34927136bd to your computer and use it in GitHub Desktop.

Select an option

Save zoalasaurusrawr/19a222431c0748fff77e2e34927136bd to your computer and use it in GitHub Desktop.
mythings.proto
syntax = "proto3";
package MyThings;
service MyThings {
// Sends a greeting
rpc GetThingByName (ThingRequest) returns (ThingReply) {}
}
message ThingRequest {
string name = 1;
}
message ThingReply {
string message = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment