Files
jira/vendor/github.com/AlecAivazis/survey/terminal/output.go
T
2017-08-13 18:23:38 -07:00

21 lines
383 B
Go

// +build !windows
package terminal
import (
"io"
"os"
)
// Returns special stdout, which converts escape sequences to Windows API calls
// on Windows environment.
func NewAnsiStdout() io.Writer {
return os.Stdout
}
// Returns special stderr, which converts escape sequences to Windows API calls
// on Windows environment.
func NewAnsiStderr() io.Writer {
return os.Stderr
}