Rename group package and defaults to halls

This commit is contained in:
Storm Dragon
2026-05-17 22:37:38 -04:00
parent 55528b8e62
commit a8ada950d5
26 changed files with 459 additions and 459 deletions
+3 -3
View File
@@ -5,7 +5,7 @@ import (
"sort"
"time"
"git.stormux.org/storm/skald/group"
"git.stormux.org/storm/skald/hall"
)
type GroupStats struct {
@@ -59,11 +59,11 @@ type Track struct {
}
func GetGroups() []GroupStats {
names := group.GetNames()
names := hall.GetNames()
gs := make([]GroupStats, 0, len(names))
for _, name := range names {
g := group.Get(name)
g := hall.Get(name)
if g == nil {
continue
}