Last active
June 23, 2019 20:26
-
-
Save kainlite/ad4f85164730c6c6fb2257329f7fc164 to your computer and use it in GitHub Desktop.
grpc
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"; | |
| 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