Files
podman/pkg/terminal/console_unix.go
Valentin Rothberg ea08765f40 go fmt: use go 1.18 conditional-build syntax
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
2022-03-18 09:11:53 +01:00

10 lines
152 B
Go

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