Files
tonic/tests/integration_tests/proto/test.proto
T

11 lines
129 B
Protocol Buffer

syntax = "proto3";
package test;
service Test {
rpc UnaryCall(Input) returns (Output);
}
message Input {}
message Output {}