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

package terminal

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