mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 14:51:41 +01:00
13 lines
177 B
Protocol Buffer
13 lines
177 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
service Echoer {
|
|
rpc Echo (EchoRequest) returns (EchoReply);
|
|
}
|
|
|
|
message EchoRequest {
|
|
bytes payload = 1;
|
|
}
|
|
|
|
message EchoReply {
|
|
bytes payload = 1;
|
|
} |