protoc-gen-go-micro/examples/k8s/nginx.proto
2016-12-13 19:09:29 +01:00

11 lines
148 B
Protocol Buffer

syntax = "proto3";
package nginx;
message Empty {
}
service Nginx {
rpc Hello(Empty) returns (Empty) {}
rpc World(Empty) returns (Empty) {}
}