1
0
mirror of https://github.com/beego/bee.git synced 2025-07-07 11:30:19 +00:00
Files
bee/vendor/github.com/derekparker/delve/pkg/terminal/terminal_other.go
2018-10-13 21:45:53 +08: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
}