podman/pkg/terminal/console_unix.go

10 lines
153 B
Go

//go:build !windows
// +build !windows
package terminal
// SetConsole for non-windows environments is a no-op.
func SetConsole() error {
return nil
}