(s string)
| 22 | } |
| 23 | |
| 24 | func BoldRed(s string) string { |
| 25 | return fmt.Sprintf("%s%s%s", boldRedToken, s, resetToken) |
| 26 | } |
| 27 | |
| 28 | func Green(s string) string { |
| 29 | return fmt.Sprintf("%s%s%s", greenToken, s, resetToken) |
no outgoing calls
no test coverage detected