(out io.Writer, err io.Writer)
| 53 | } |
| 54 | |
| 55 | func NewOutputPrinter(out io.Writer, err io.Writer) *OutputPrinter { |
| 56 | return &OutputPrinter{ |
| 57 | Out: out, |
| 58 | Err: err, |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | func (p *OutputPrinter) Info(msg string) { |
| 63 | fmt.Fprint(p.Out, msg) |
no outgoing calls