colorable_others.go 241 B

1234567891011121314151617181920
  1. // +build !windows
  2. package colorable
  3. import (
  4. "io"
  5. "os"
  6. )
  7. func NewColorable(file *os.File) io.Writer {
  8. return file
  9. }
  10. func NewColorableStdout() io.Writer {
  11. return os.Stdout
  12. }
  13. func NewColorableStderr() io.Writer {
  14. return os.Stderr
  15. }