diff options
Diffstat (limited to 'pkg/terminal/console_unix.go')
-rw-r--r-- | pkg/terminal/console_unix.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pkg/terminal/console_unix.go b/pkg/terminal/console_unix.go new file mode 100644 index 000000000..6eee6aa2f --- /dev/null +++ b/pkg/terminal/console_unix.go @@ -0,0 +1,8 @@ +// +build !windows + +package terminal + +// SetConsole for non-windows environments is a no-op +func SetConsole() error { + return nil +} |