Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mohak1712
Last active December 2, 2020 09:38
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mohak1712/44dea4f73a808d7e937ec7449bd7b582 to your computer and use it in GitHub Desktop.
Save mohak1712/44dea4f73a808d7e937ec7449bd7b582 to your computer and use it in GitHub Desktop.
syntax = "proto3";
package pingpong;
message PingRequest {
string ping = 1;
}
message PongResponse {
string pong = 1;
}
service PingPongService {
rpc pingPong(PingRequest) returns (PongResponse);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment