(t string)
| 116 | } |
| 117 | |
| 118 | func (c *ColorScheme) Green(t string) string { |
| 119 | if !c.Enabled { |
| 120 | return t |
| 121 | } |
| 122 | return green(t) |
| 123 | } |
| 124 | |
| 125 | func (c *ColorScheme) Greenf(t string, args ...interface{}) string { |
| 126 | return c.Green(fmt.Sprintf(t, args...)) |
no outgoing calls
no test coverage detected