1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-30 08:06:40 +02:00
go-micro/service/grpc/examples/greeter/function/proto/hello/hello.proto

16 lines
187 B
Protocol Buffer
Raw Normal View History

2019-06-03 19:44:43 +02: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;
}