colorable_others.go 113 B

1234567891011
  1. // +build !windows
  2. package colorable
  3. import (
  4. "os"
  5. )
  6. func NewColorableWriter() *Writer {
  7. return os.Stdout
  8. }