2016-03-09 04:20:03 +00:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package terminal
|
|
|
|
|
|
|
|
import (
|
2016-03-24 10:55:48 +00:00
|
|
|
"io"
|
2016-03-09 04:20:03 +00:00
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
2016-04-18 19:46:35 +00:00
|
|
|
// getColorableWriter simply returns stdout on
|
|
|
|
// *nix machines.
|
2016-03-24 10:55:48 +00:00
|
|
|
func getColorableWriter() io.Writer {
|
|
|
|
return os.Stdout
|
2016-03-09 04:20:03 +00:00
|
|
|
}
|