This commit is contained in:
aozhiwei 2024-06-22 12:55:23 +08:00
parent 10d1cdbfcd
commit d468d6d48c
3 changed files with 10 additions and 0 deletions

View File

@ -5,7 +5,11 @@ type repairNft struct {
} }
func (this* repairNft) init() { func (this* repairNft) init() {
go this.process()
} }
func (this* repairNft) unInit() { func (this* repairNft) unInit() {
} }
func (this* repairNft) process() {
}

View File

@ -51,3 +51,6 @@ SELECT * FROM t_721nft_spec_transfer WHERE idx > %d LIMIT 1000`,
} }
} }
} }
func (this* specTransfer721) process(ds *f5.DataSet) {
}

View File

@ -10,6 +10,7 @@ type taskMgr struct {
webHook webHook
goldBullionReturn goldBullionReturn
specTransfer721 specTransfer721
repairNft
} }
func (this *taskMgr) Init() { func (this *taskMgr) Init() {
@ -18,9 +19,11 @@ func (this *taskMgr) Init() {
this.webHook.init() this.webHook.init()
this.goldBullionReturn.init() this.goldBullionReturn.init()
this.specTransfer721.init() this.specTransfer721.init()
this.repairNft.init()
} }
func (this *taskMgr) UnInit() { func (this *taskMgr) UnInit() {
this.repairNft.unInit()
this.specTransfer721.unInit() this.specTransfer721.unInit()
this.goldBullionReturn.unInit() this.goldBullionReturn.unInit()
this.webHook.unInit() this.webHook.unInit()