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