Closed ghost closed 5 years ago
Using this file:
package main import "github.com/labstack/gommon/color" func main() { color.Println(color.Green("aaaaa bbbbb")) }
I just get plain white output.
Fix:
package main import "github.com/labstack/gommon/color" func main() { color.Enable() color.Println(color.Green("aaaaa bbbbb")) }
Using this file:
I just get plain white output.