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