Apply coding convention

This commit is contained in:
AI Bot
2026-05-03 17:58:47 +02:00
committed by Riyyi
parent 317d5f4be9
commit ccf64ce867
14 changed files with 2826 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 {