1
This commit is contained in:
parent
10d1cdbfcd
commit
d468d6d48c
@ -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() {
|
||||||
|
}
|
||||||
|
@ -51,3 +51,6 @@ SELECT * FROM t_721nft_spec_transfer WHERE idx > %d LIMIT 1000`,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (this* specTransfer721) process(ds *f5.DataSet) {
|
||||||
|
}
|
||||||
|
@ -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()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user