mirror of
https://github.com/Print3M/epic
synced 2026-06-06 16:34:33 +00:00
8 lines
82 B
Go
8 lines
82 B
Go
package cli
|
|
|
|
import "os"
|
|
|
|
func DisableColors() {
|
|
os.Setenv("NO_COLOR", "true")
|
|
}
|