micro/service/grpc/examples/greeter/function/proto/hello/hello.proto
2019-06-03 18:44:43 +01:00

16 lines
187 B
Protocol Buffer

syntax = "proto3";
package go.micro.srv.greeter;
service Say {
rpc Hello(Request) returns (Response) {}
}
message Request {
string name = 1;
}
message Response {
string msg = 1;
}