Files
crank/crates/crank-adapter-grpc/proto/echo.proto
T
2026-04-06 11:04:10 +03:00

17 lines
268 B
Protocol Buffer

syntax = "proto3";
package echo;
service EchoService {
rpc UnaryEcho(EchoRequest) returns (EchoResponse);
rpc ServerEcho(EchoRequest) returns (stream EchoResponse);
}
message EchoRequest {
string message = 1;
}
message EchoResponse {
string message = 1;
}