mirror of
https://github.com/containers/podman.git
synced 2025-05-23 18:17:53 +08:00
10 lines
152 B
Go
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
|
|
}
|