1 package main 2 3 import ( 4 "io" 5 "os" 6 7 "github.com/mattn/go-colorable" 8 ) 9 10 func main() { 11 io.Copy(colorable.NewColorableStdout(), os.Stdin) 12 } 13
View as plain text