feat: continue installing other packages if one is denied

This commit is contained in:
Sahilb315
2025-05-11 22:49:03 +05:30
parent 8177083e64
commit 71f05449e5
2 changed files with 24 additions and 7 deletions
+11
View File
@@ -0,0 +1,11 @@
package wrapper
import "errors"
const (
ErrPackageInstallationDeny = "PACKAGE_INSTALLATION_DENIED"
)
var (
ErrPackageInstall = errors.New(ErrPackageInstallationDeny)
)