11 lines
148 B
Protocol Buffer
Raw Normal View History

2016-12-13 19:09:29 +01:00
syntax = "proto3";
package nginx;
message Empty {
}
service Nginx {
rpc Hello(Empty) returns (Empty) {}
rpc World(Empty) returns (Empty) {}
}