1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-06-30 22:33:49 +02:00
Files
go-micro/service/grpc/examples/greeter/function/proto/hello/hello.proto

16 lines
187 B
Protocol Buffer
Raw Normal View History

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