refactor: 优化代码组织结构

This commit is contained in:
Akkia
2022-04-12 13:16:33 +08:00
parent 3d5e292d26
commit c65028188c
7 changed files with 281 additions and 239 deletions

View File

@@ -16,7 +16,7 @@ const firstNotificationDelay = time.Minute * 15
var notifications []model.Notification
var notificationsLock sync.RWMutex
// LoadNotifications 加载通知方式到 singleton.notifications 变量
// LoadNotifications 从 DB 加载通知方式到 singleton.notifications 变量
func LoadNotifications() {
notificationsLock.Lock()
if err := DB.Find(&notifications).Error; err != nil {