micro/examples/service/proto/greeter.proto
2016-01-01 01:16:21 +00:00

14 lines
185 B
Protocol Buffer

syntax = "proto3";
service Greeter {
rpc Hello(HelloRequest) returns (HelloResponse) {}
}
message HelloRequest {
string name = 1;
}
message HelloResponse {
string greeting = 2;
}