1
This commit is contained in:
parent
17f5cfaf89
commit
0775bfd7a7
16
server/light_backtask/task/olduser.go
Normal file
16
server/light_backtask/task/olduser.go
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
package task
|
||||||
|
|
||||||
|
import (
|
||||||
|
)
|
||||||
|
|
||||||
|
type oldUser struct {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *oldUser) init() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *oldUser) unInit() {
|
||||||
|
|
||||||
|
}
|
@ -12,6 +12,7 @@ type taskMgr struct {
|
|||||||
contribution
|
contribution
|
||||||
chainActivity
|
chainActivity
|
||||||
recharge
|
recharge
|
||||||
|
oldUser
|
||||||
}
|
}
|
||||||
|
|
||||||
func (this *taskMgr) Init() {
|
func (this *taskMgr) Init() {
|
||||||
@ -23,9 +24,11 @@ func (this *taskMgr) Init() {
|
|||||||
this.contribution.init()
|
this.contribution.init()
|
||||||
this.chainActivity.init()
|
this.chainActivity.init()
|
||||||
this.recharge.init()
|
this.recharge.init()
|
||||||
|
this.oldUser.init()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (this *taskMgr) UnInit() {
|
func (this *taskMgr) UnInit() {
|
||||||
|
this.oldUser.unInit()
|
||||||
this.recharge.unInit()
|
this.recharge.unInit()
|
||||||
this.chainActivity.unInit()
|
this.chainActivity.unInit()
|
||||||
this.contribution.unInit()
|
this.contribution.unInit()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user