1
This commit is contained in:
parent
663892a380
commit
4e0feee1d4
14
server/light_backtask/task/chain_activity.go
Normal file
14
server/light_backtask/task/chain_activity.go
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
package task
|
||||||
|
|
||||||
|
import (
|
||||||
|
)
|
||||||
|
|
||||||
|
type chainActivity struct {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this* chainActivity) init() {
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this* chainActivity) unInit() {
|
||||||
|
}
|
@ -10,6 +10,7 @@ type taskMgr struct {
|
|||||||
repairOrder
|
repairOrder
|
||||||
refreshMeta
|
refreshMeta
|
||||||
contribution
|
contribution
|
||||||
|
chainActivity
|
||||||
}
|
}
|
||||||
|
|
||||||
func (this *taskMgr) Init() {
|
func (this *taskMgr) Init() {
|
||||||
@ -19,9 +20,11 @@ func (this *taskMgr) Init() {
|
|||||||
this.repairOrder.init()
|
this.repairOrder.init()
|
||||||
//this.refreshMeta.init()
|
//this.refreshMeta.init()
|
||||||
//this.contribution.init()
|
//this.contribution.init()
|
||||||
|
this.chainActivity.init()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (this *taskMgr) UnInit() {
|
func (this *taskMgr) UnInit() {
|
||||||
|
this.chainActivity.unInit()
|
||||||
//this.contribution.unInit()
|
//this.contribution.unInit()
|
||||||
//this.refreshMeta.unInit()
|
//this.refreshMeta.unInit()
|
||||||
this.repairOrder.unInit()
|
this.repairOrder.unInit()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user