Files
crank/crates/mcpaas-adapter-grpc/proto/echo.proto
T
2026-03-25 21:23:57 +03:00

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