mirror of
https://github.com/Threnklyn/jira.git
synced 2026-06-07 21:43:32 +02:00
20 lines
393 B
Go
20 lines
393 B
Go
// +build !windows
|
|
|
|
package terminal
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
// Returns special stdout, which converts escape sequences to Windows API calls
|
|
// on Windows environment.
|
|
func NewAnsiStdout(out FileWriter) io.Writer {
|
|
return out
|
|
}
|
|
|
|
// Returns special stderr, which converts escape sequences to Windows API calls
|
|
// on Windows environment.
|
|
func NewAnsiStderr(out FileWriter) io.Writer {
|
|
return out
|
|
}
|