//go:build darwin package installer import ( "gitgud.io/mike/mpv-manager/pkg/platform" ) // NewInstallationHandler creates a new installation handler for macOS func NewInstallationHandler(p *platform.Platform, inst *Installer) *InstallationHandler { handler := &InstallationHandler{ Platform: p, Installer: inst, } handler.PlatformInstaller = NewMacOSInstaller(inst, p) return handler }