by Robin at 20241022
This commit is contained in:
parent
02ca375de8
commit
5d4ff4fb54
|
@ -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,
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue