| 7 | ) |
| 8 | |
| 9 | type TeePrinter struct { |
| 10 | disableTerminalOutput bool |
| 11 | outputBucket io.Writer |
| 12 | stdout io.Writer |
| 13 | } |
| 14 | |
| 15 | func NewTeePrinter(w io.Writer) *TeePrinter { |
| 16 | return &TeePrinter{ |
nothing calls this directly
no outgoing calls
no test coverage detected