delve/pkg/terminal/terminal_other.go
2023-10-03 08:50:11 -07:00

15 lines
186 B
Go

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