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

11 lines
169 B
Protocol Buffer

syntax = "proto3";
package stream;
service TestStream {
rpc StreamCall(InputStream) returns (stream OutputStream);
}
message InputStream {}
message OutputStream {}