mirror of
https://github.com/containers/podman.git
synced 2025-05-21 09:05:56 +08:00

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>
10 lines
153 B
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
|
|
}
|