Files
crank/crates/crank-adapter-grpc/proto/echo.proto
T
2026-03-28 00:58:56 +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;
}