Add initial declpac CLI tool implementation

This commit is contained in:
AI Bot
2026-04-13 19:27:40 +02:00
committed by Riyyi
parent f1efd72fcb
commit e165558262
9 changed files with 483 additions and 69 deletions
+12
View File
@@ -0,0 +1,12 @@
package output
import "fmt"
type Result struct {
Installed int
Removed int
}
func Format(r *Result) string {
return fmt.Sprintf("Installed %d packages, removed %d packages", r.Installed, r.Removed)
}