1
0
mirror of https://github.com/ericchiang/pup synced 2025-06-30 14:22:33 +00:00
pup/Godeps/_workspace/src/github.com/mattn/go-colorable/colorable_others.go
2015-04-05 15:21:06 -04:00

17 lines
180 B
Go

// +build !windows
package colorable
import (
"io"
"os"
)
func NewColorableStdout() io.Writer {
return os.Stdout
}
func NewColorableStderr() io.Writer {
return os.Stderr
}