Rename group package and defaults to halls
This commit is contained in:
+3
-3
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user