Skip to content

Instantly share code, notes, and snippets.

@kainlite
Last active June 23, 2019 20:26
Show Gist options
  • Select an option

  • Save kainlite/ad4f85164730c6c6fb2257329f7fc164 to your computer and use it in GitHub Desktop.

Select an option

Save kainlite/ad4f85164730c6c6fb2257329f7fc164 to your computer and use it in GitHub Desktop.
grpc
syntax = "proto3";
service PingService {
rpc Ping (PingRequest) returns (PingResponse);
}
message PingRequest {
string data = 1;
}
message PingResponse {
string data = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment