Skip to content

Instantly share code, notes, and snippets.

@cfsghost
Created September 26, 2017 22:18
Show Gist options
  • Save cfsghost/1145574c874de378a19699dcc6b74c1a to your computer and use it in GitHub Desktop.
Save cfsghost/1145574c874de378a19699dcc6b74c1a to your computer and use it in GitHub Desktop.
Groa.js : Koa-like gRPC Middleware Framework - proto
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