10 lines
132 B
Protocol Buffer
10 lines
132 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
message EchoMsg {
|
|
required string value = 1;
|
|
}
|
|
|
|
service Example {
|
|
rpc Echo (EchoMsg) returns (EchoMsg) {}
|
|
}
|