mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-06 00:45:43 +00:00
8 lines
134 B
Go
8 lines
134 B
Go
//go:build !windows
|
|
|
|
package terminal
|
|
|
|
// SetConsole for non-windows environments is a no-op.
|
|
func SetConsole() error {
|
|
return nil
|
|
}
|