14 lines
234 B
Protocol Buffer
14 lines
234 B
Protocol Buffer
syntax = "proto3";
|
|
package testService;
|
|
|
|
option go_package = "net/streampool/testservice";
|
|
|
|
service Test {
|
|
rpc TestStream(stream StreamMessage) returns (stream StreamMessage);
|
|
}
|
|
|
|
|
|
message StreamMessage {
|
|
string reqData = 1;
|
|
}
|