mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-10 16:30:01 +08:00
feat(goctl/rpc): support external proto imports with cross-package ty… (#5472)
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
24
tools/goctl/rpc/example/10-streaming/stream.proto
Normal file
24
tools/goctl/rpc/example/10-streaming/stream.proto
Normal file
@@ -0,0 +1,24 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package streamsvc;
|
||||
|
||||
option go_package = "example.com/demo/pb";
|
||||
|
||||
message StreamReq {
|
||||
string input = 1;
|
||||
}
|
||||
|
||||
message StreamReply {
|
||||
string output = 1;
|
||||
}
|
||||
|
||||
service StreamService {
|
||||
// ServerStream: client sends one request, server returns a stream of responses.
|
||||
rpc ServerStream(StreamReq) returns (stream StreamReply);
|
||||
|
||||
// ClientStream: client sends a stream of requests, server returns one response.
|
||||
rpc ClientStream(stream StreamReq) returns (StreamReply);
|
||||
|
||||
// BidiStream: both client and server send streams of messages.
|
||||
rpc BidiStream(stream StreamReq) returns (stream StreamReply);
|
||||
}
|
||||
Reference in New Issue
Block a user