(t string, args ...interface{})
| 168 | } |
| 169 | |
| 170 | func (c *ColorScheme) Cyanf(t string, args ...interface{}) string { |
| 171 | return c.Cyan(fmt.Sprintf(t, args...)) |
| 172 | } |
| 173 | |
| 174 | func (c *ColorScheme) CyanBold(t string) string { |
| 175 | if !c.Enabled { |
no test coverage detected