This commit is contained in:
aozhiwei 2024-07-22 20:08:18 +08:00
parent 663892a380
commit 4e0feee1d4
2 changed files with 17 additions and 0 deletions

View File

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

View File

@ -10,6 +10,7 @@ type taskMgr struct {
repairOrder
refreshMeta
contribution
chainActivity
}
func (this *taskMgr) Init() {
@ -19,9 +20,11 @@ func (this *taskMgr) Init() {
this.repairOrder.init()
//this.refreshMeta.init()
//this.contribution.init()
this.chainActivity.init()
}
func (this *taskMgr) UnInit() {
this.chainActivity.unInit()
//this.contribution.unInit()
//this.refreshMeta.unInit()
this.repairOrder.unInit()