delve/pkg/terminal/terminal_other.go
2021-12-13 10:25:23 -08:00

16 lines
205 B
Go

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