Green returns text colored green.
(text string)
| 83 | |
| 84 | // Green returns text colored green. |
| 85 | func Green(text string) string { |
| 86 | return color.Sprintf(color.Green(text)) |
| 87 | } |
| 88 | |
| 89 | // Yellow returns text colored yellow. |
| 90 | func Yellow(text string) string { |
no outgoing calls
no test coverage detected