Files
podman/pkg/terminal/console_unix.go
Valentin Rothberg 6c030cd573 fix a number of godot issues
Still an unknown number remains but I am running out of patience.
Adding dots is not the best use of my time.

Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
2022-03-22 13:04:35 +01:00

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
}