This commit is contained in:
aozhiwei 2024-08-23 18:30:40 +08:00
parent 17f5cfaf89
commit 0775bfd7a7
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,16 @@
package task
import (
)
type oldUser struct {
}
func (this *oldUser) init() {
}
func (this *oldUser) unInit() {
}

View File

@ -12,6 +12,7 @@ type taskMgr struct {
contribution
chainActivity
recharge
oldUser
}
func (this *taskMgr) Init() {
@ -23,9 +24,11 @@ func (this *taskMgr) Init() {
this.contribution.init()
this.chainActivity.init()
this.recharge.init()
this.oldUser.init()
}
func (this *taskMgr) UnInit() {
this.oldUser.unInit()
this.recharge.unInit()
this.chainActivity.unInit()
this.contribution.unInit()