Co-authored-by: anqiansong <anqiansong@xiaoheiban.cn>
This commit is contained in:
16
tools/goctl/rpc/parser/stream.proto
Normal file
16
tools/goctl/rpc/parser/stream.proto
Normal file
@@ -0,0 +1,16 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package test;
|
||||
|
||||
message Req{
|
||||
string input = 1;
|
||||
}
|
||||
|
||||
message Reply{
|
||||
string output = 1;
|
||||
}
|
||||
service TestService{
|
||||
rpc ServerStream (Req) returns (stream Reply);
|
||||
rpc ClientStream (stream Req) returns (Reply);
|
||||
rpc Stream (stream Req) returns (stream Reply);
|
||||
}
|
||||
Reference in New Issue
Block a user