podman-build/pkg/terminal/console_unix.go
2025-10-11 12:30:35 +09:00

9 lines
134 B
Go

//go:build !windows
package terminal
// SetConsole for non-windows environments is a no-op.
func SetConsole() error {
return nil
}