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
//DailyTaskMgr
webHook
goldBullionReturn
}
func (this *taskMgr) Init() {
//t.HourlyTaskMgr.Init()
//t.DailyTaskMgr.Init()
this.webHook.init()
this.goldBullionReturn.init()
}
func (this *taskMgr) UnInit() {
this.goldBullionReturn.unInit()
this.webHook.unInit()
}