✏️ 优化代码结构

This commit is contained in:
fumiama
2021-12-21 22:18:06 +08:00
parent 1e49bad1a6
commit 8499921d67
2 changed files with 3 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ import (
"github.com/FloatTech/ZeroBot-Plugin/utils/file"
"github.com/FloatTech/ZeroBot-Plugin/utils/process"
"github.com/sirupsen/logrus"
)
type kimo = map[string]*[]string
@@ -22,6 +23,7 @@ func initChatList(postinit func()) {
for k := range kimomap {
chatList = append(chatList, k)
}
logrus.Infoln("[chat]加载", len(chatList), "条kimoi")
postinit()
}()
}