Apply coding conventions

This commit is contained in:
AI Bot
2026-05-03 18:01:00 +02:00
committed by Riyyi
parent 317d5f4be9
commit 7c4b0eda8b
6 changed files with 101 additions and 88 deletions
+3
View File
@@ -10,6 +10,9 @@ import (
var ErrEmptyList = errors.New("package list is empty")
// -----------------------------------------
// public
func Merge(packages map[string]bool) ([]string, error) {
result := make([]string, 0, len(packages))
for name := range packages {