1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-12-05 21:56:14 +02:00
Files
go-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;
}