micro/examples/service/proto/greeter.proto

14 lines
185 B
Protocol Buffer
Raw Normal View History

2016-01-01 04:16:21 +03:00
syntax = "proto3";
service Greeter {
rpc Hello(HelloRequest) returns (HelloResponse) {}
}
message HelloRequest {
string name = 1;
}
message HelloResponse {
string greeting = 2;
}