delve/pkg/terminal/terminal_other.go

15 lines
186 B
Go
Raw Normal View History

2021-12-13 18:25:23 +00:00
//go:build !windows
package terminal
import (
"io"
"os"
)
// getColorableWriter simply returns stdout on
// *nix machines.
func getColorableWriter() io.Writer {
return os.Stdout
}