(t string)
| 94 | } |
| 95 | |
| 96 | func (c *ColorScheme) Red(t string) string { |
| 97 | if !c.Enabled { |
| 98 | return t |
| 99 | } |
| 100 | return red(t) |
| 101 | } |
| 102 | |
| 103 | func (c *ColorScheme) Redf(t string, args ...interface{}) string { |
| 104 | return c.Red(fmt.Sprintf(t, args...)) |
no outgoing calls
no test coverage detected