| 10 | ) |
| 11 | |
| 12 | type UI interface { |
| 13 | Print(a ...interface{}) (n int, err error) |
| 14 | Printf(format string, a ...interface{}) (n int, err error) |
| 15 | Println(a ...interface{}) (n int, err error) |
| 16 | Errorf(format string, a ...interface{}) (n int, err error) |
| 17 | Errorln(a ...interface{}) (n int, err error) |
| 18 | } |
| 19 | |
| 20 | var ( |
| 21 | Stdout = colorable.NewColorableStdout() |
no outgoing calls
no test coverage detected