mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 09:40:24 +08:00
15 lines
190 B
Protocol Buffer
15 lines
190 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package graceful;
|
|
|
|
message Request {
|
|
string from = 1;
|
|
}
|
|
|
|
message Response {
|
|
string host = 2;
|
|
}
|
|
|
|
service GraceService {
|
|
rpc grace(Request) returns(Response);
|
|
} |