This commit is contained in:
aozhiwei 2024-06-22 10:17:50 +08:00
parent b0e442c078
commit c72ef6e063

View File

@ -8,14 +8,17 @@ type taskMgr struct {
//HourlyTaskMgr //HourlyTaskMgr
//DailyTaskMgr //DailyTaskMgr
webHook webHook
goldBullionReturn
} }
func (this *taskMgr) Init() { func (this *taskMgr) Init() {
//t.HourlyTaskMgr.Init() //t.HourlyTaskMgr.Init()
//t.DailyTaskMgr.Init() //t.DailyTaskMgr.Init()
this.webHook.init() this.webHook.init()
this.goldBullionReturn.init()
} }
func (this *taskMgr) UnInit() { func (this *taskMgr) UnInit() {
this.goldBullionReturn.unInit()
this.webHook.unInit() this.webHook.unInit()
} }