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
+9
View File
@@ -0,0 +1,9 @@
package merge
func Merge(packages map[string]bool) []string {
result := make([]string, 0, len(packages))
for name := range packages {
result = append(result, name)
}
return result
}