1
0
mirror of https://github.com/beego/bee.git synced 2024-07-03 17:04:13 +00:00
bee/vendor/github.com/derekparker/delve/pkg/terminal/terminal_other.go
2017-03-19 23:48:59 +01:00

15 lines
185 B
Go

// +build !windows
package terminal
import (
"io"
"os"
)
// getColorableWriter simply returns stdout on
// *nix machines.
func getColorableWriter() io.Writer {
return os.Stdout
}