aozhiwei fd749fb398 1
2024-07-12 17:21:25 +08:00

29 lines
417 B
Go

package task
import (
)
type taskMgr struct {
webHook
repairNft
sysMail
repairOrder
refreshMeta
}
func (this *taskMgr) Init() {
this.webHook.init()
this.repairNft.init()
this.sysMail.init()
this.repairOrder.init()
//this.refreshMeta.init()
}
func (this *taskMgr) UnInit() {
//this.refreshMeta.unInit()
this.repairOrder.unInit()
this.sysMail.unInit()
this.repairNft.unInit()
this.webHook.unInit()
}