This commit is contained in:
aozhiwei 2024-07-19 12:43:31 +08:00
parent 0e2a555f32
commit 1bd657334a

View File

@ -3,15 +3,11 @@ package task
import (
//"fmt"
"sync"
//"main/task/spec_transfer721"
)
type taskMgr struct {
//HourlyTaskMgr
//DailyTaskMgr
webHook
goldBullionReturn
//spec_transfer721.SpecTransfer721
repairNft
openGoldLock sync.Mutex
sysMail
@ -21,11 +17,8 @@ type taskMgr struct {
}
func (this *taskMgr) Init() {
//t.HourlyTaskMgr.Init()
//t.DailyTaskMgr.Init()
this.webHook.init()
this.goldBullionReturn.init()
//this.SpecTransfer721.Init()
this.repairNft.init()
this.sysMail.init()
this.repairOrder.init()
@ -39,7 +32,6 @@ func (this *taskMgr) UnInit() {
this.repairOrder.unInit()
this.sysMail.unInit()
this.repairNft.unInit()
//this.SpecTransfer721.UnInit()
this.goldBullionReturn.unInit()
this.webHook.unInit()
}