(str string, i ...interface{})
| 126 | } |
| 127 | |
| 128 | func (p *Printer) PrintfSuccess(str string, i ...interface{}) { |
| 129 | p.Print(ColorGreenBold.Sprintf(str, i...)) |
| 130 | } |
| 131 | |
| 132 | func (p *Printer) PrintfWarn(str string, i ...interface{}) { |
| 133 | p.Print(ColorYellowBold.Sprintf(str, i...)) |
no test coverage detected