This commit is contained in:
aozhiwei 2024-07-12 17:26:48 +08:00
parent fd749fb398
commit bafb83cb87

View File

@ -12,17 +12,17 @@ type taskMgr struct {
} }
func (this *taskMgr) Init() { func (this *taskMgr) Init() {
this.webHook.init() //this.webHook.init()
this.repairNft.init() //this.repairNft.init()
this.sysMail.init() //this.sysMail.init()
this.repairOrder.init() //this.repairOrder.init()
//this.refreshMeta.init() this.refreshMeta.init()
} }
func (this *taskMgr) UnInit() { func (this *taskMgr) UnInit() {
//this.refreshMeta.unInit() this.refreshMeta.unInit()
this.repairOrder.unInit() //this.repairOrder.unInit()
this.sysMail.unInit() //this.sysMail.unInit()
this.repairNft.unInit() //this.repairNft.unInit()
this.webHook.unInit() //this.webHook.unInit()
} }