(str string, i ...interface{})
| 122 | } |
| 123 | |
| 124 | func (p *Printer) PrintfBold(str string, i ...interface{}) { |
| 125 | p.Print(ColorBold.Sprintf(str, i...)) |
| 126 | } |
| 127 | |
| 128 | func (p *Printer) PrintfSuccess(str string, i ...interface{}) { |
| 129 | p.Print(ColorGreenBold.Sprintf(str, i...)) |
no test coverage detected