micro/service/grpc/examples/greeter/function/proto/hello/hello.proto

16 lines
187 B
Protocol Buffer
Raw Normal View History

2019-06-03 20:44:43 +03:00
syntax = "proto3";
package go.micro.srv.greeter;
service Say {
rpc Hello(Request) returns (Response) {}
}
message Request {
string name = 1;
}
message Response {
string msg = 1;
}