feat(cli): add first implementation for install command

This commit is contained in:
Patryk Hegenberg 2025-01-17 16:18:03 +01:00
parent c1e913641e
commit c0be9a6b43
11 changed files with 257 additions and 77 deletions

View file

@ -4,5 +4,7 @@ type PackageManager interface {
Install(packages []string) error
InstallPackage(pkg string) error
InstallManager() error
RemovePackage(pkg string) error
SearchPackage(pkg string) []string
Name() string
}