Created
September 26, 2017 22:18
-
-
Save cfsghost/1145574c874de378a19699dcc6b74c1a to your computer and use it in GitHub Desktop.
Groa.js : Koa-like gRPC Middleware Framework - proto
This file contains 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 example.foo; | |
service Example1 { | |
rpc Ping(Ping) returns (Pong) {} | |
} | |
message Ping { | |
string content = 1; | |
} | |
message Pong { | |
string content = 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment