| 105 | } |
| 106 | |
| 107 | type clientStream struct { |
| 108 | s streamingapi.TTRPCStreaming_StreamClient |
| 109 | } |
| 110 | |
| 111 | func (cs *clientStream) Send(a typeurl.Any) (err error) { |
| 112 | err = cs.s.Send(typeurl.MarshalProto(a)) |
nothing calls this directly
no outgoing calls
no test coverage detected