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
|
||||
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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user