mirror of
https://github.com/go-micro/go-micro.git
synced 2025-01-05 10:20:53 +02:00
16 lines
187 B
Protocol Buffer
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;
|
|
}
|