package main type PackageManager interface { Install(packages []string) error InstallPackage(pkg string) error InstallManager() error Name() string }