| 27 | } |
| 28 | |
| 29 | type stream struct { |
| 30 | stdout chan []byte |
| 31 | stderr chan []byte |
| 32 | done chan struct{} |
| 33 | } |
| 34 | |
| 35 | func newStream(stdout, stderr chan []byte) *stream { |
| 36 | return &stream{ |
nothing calls this directly
no outgoing calls
no test coverage detected