summaryrefslogtreecommitdiff
path: root/pkg/terminal/console_unix.go
blob: e6c0442c9ef3b70becd623bd0c76d822ec9a196d (plain)
1
2
3
4
5
6
7
8
9
//go:build !windows
// +build !windows

package terminal

// SetConsole for non-windows environments is a no-op
func SetConsole() error {
	return nil
}