mirror of
https://github.com/ericchiang/pup
synced 2025-06-30 14:22:33 +00:00
17 lines
180 B
Go
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
|
|
}
|