protoc-gen-go-micro/examples/k8s/nginx.proto

11 lines
148 B
Protocol Buffer
Raw Normal View History

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