mirror of
https://github.com/containers/podman.git
synced 2025-05-22 01:27:07 +08:00
9 lines
134 B
Go
9 lines
134 B
Go
//go:build !windows
|
|
|
|
package terminal
|
|
|
|
// SetConsole for non-windows environments is a no-op.
|
|
func SetConsole() error {
|
|
return nil
|
|
}
|