16 lines
207 B
Protocol Buffer
16 lines
207 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package echo;
|
|
|
|
service EchoService {
|
|
rpc UnaryEcho(EchoRequest) returns (EchoResponse);
|
|
}
|
|
|
|
message EchoRequest {
|
|
string message = 1;
|
|
}
|
|
|
|
message EchoResponse {
|
|
string message = 1;
|
|
}
|