by Robin at 20241022

This commit is contained in:
Leufolium 2024-10-22 13:27:02 +08:00
parent 02ca375de8
commit 5d4ff4fb54
2 changed files with 5 additions and 1 deletions

View File

@ -12,7 +12,7 @@ type NotifBcstVers struct {
store *dao.Store
}
func NewZoneNotifBcstVers(store *dao.Store) (a *NotifBcstVers) {
func NewNotifBcstVers(store *dao.Store) (a *NotifBcstVers) {
a = &NotifBcstVers{
store: store,
}

View File

@ -259,6 +259,10 @@ func (s *Service) Init(c any) (err error) {
_DefaultAutoResponseCreateTimes = logic.NewAutoResponseCreateTimes(store)
_DefaultNotification = logic.NewNotification(store)
_DefaultRavenIQTest = logic.NewRavenIQTest(store)
_DefaultNotifBcstVers = logic.NewNotifBcstVers(store)
_DefaultNotifBcst = logic.NewNotifBcst(store)
_DefaultNotifReceive = logic.NewNotifReceive(store)
_DefaultNotifReceivePull = logic.NewNotifReceivePull(store)
_DefaultVas = logic.NewVas(store, _DefaultStreamer, _DefaultAccount, _DefaultZone, _DefaultZoneThirdPartner, _DefaultZoneCollaborator)
_DefaultStreamerAcct = logic.NewStreamerAcct(store)