mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 18:00:24 +08:00
18 lines
187 B
Protocol Buffer
18 lines
187 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package unary;
|
||
|
|
||
|
message Request {
|
||
|
string name = 1;
|
||
|
}
|
||
|
|
||
|
message Response {
|
||
|
string greet = 1;
|
||
|
}
|
||
|
|
||
|
service Greeter {
|
||
|
rpc greet(Request) returns (Response);
|
||
|
}
|
||
|
|
||
|
|