mirror of
https://github.com/go-micro/go-micro.git
synced 2025-03-23 20:32:32 +02:00
14 lines
165 B
Protocol Buffer
14 lines
165 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
service Greeter {
|
||
|
rpc Hello(Request) returns (Response) {}
|
||
|
}
|
||
|
|
||
|
message Request {
|
||
|
string name = 1;
|
||
|
}
|
||
|
|
||
|
message Response {
|
||
|
string greeting = 2;
|
||
|
}
|