aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattn/go-colorable/colorable_others.go
blob: 52d6653b34bb79d866522ea8c217e8b6f383a0fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// +build !windows

package colorable

import (
    "io"
    "os"
)

func NewColorable(file *os.File) io.Writer {
    if file == nil {
        panic("nil passed instead of *os.File to NewColorable()")
    }

    return file
}

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

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