colorable_others.go 180 B

12345678910111213141516
  1. // +build !windows
  2. package colorable
  3. import (
  4. "io"
  5. "os"
  6. )
  7. func NewColorableStdout() io.Writer {
  8. return os.Stdout
  9. }
  10. func NewColorableStderr() io.Writer {
  11. return os.Stderr
  12. }