hrpc/example/echo.proto

10 lines
131 B
Protocol Buffer

syntax = "proto2";
message EchoMsg {
required string value = 1;
}
service Echoer {
rpc Echo (EchoMsg) returns (EchoMsg) {}
}