aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/mattn/go-colorable/colorable_others.go
blob: 219f02f62a604f8a7af71ba726936712600bc773 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// +build !windows

package colorable

import (
	"io"
	"os"
)

func NewColorableStdout() io.Writer {
	return os.Stdout
}

func NewColorableStderr() io.Writer {
	return os.Stderr
}