A utility for generating Markdown documentation for Protocol Buffers that include Mermaid UML Diagrams.
55
stars
16
forks
source link
Correct RpcVisitor to recognize the absence of `stream` in the Service return parameter #4
Closed
mmizutani closed 1 year ago
Currently, given a proto definition of a Unary (non-Stream) RPC call,
proto-gen-md-diagrams
emits a Mermaid.js diagram and a table showing that the type of the return parameter is not Unary but Stream, :This PR corrects
RpcVisitor.Visit()
to property handle the absence of astream
option in Service return parameters.