Files
uptime-kuma/test/manual-test-grpc/echo.proto
T

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