go-zero/example/graceful/dns/rpc/graceful.proto
2020-07-26 17:09:05 +08:00

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);
}