This commit is contained in:
Corey Johnson 2019-10-15 14:55:15 -07:00
parent cff76fbc22
commit 9c218075fb

View file

@ -37,3 +37,7 @@ func Magenta(a ...interface{}) string {
func Cyan(a ...interface{}) string {
return color.Cyan.Render(a...)
}
func Bold(a ...interface{}) string {
return color.Bold.Render(a...)
}