This commit is contained in:
aozhiwei 2024-06-16 18:13:33 +08:00
parent 2d903a596e
commit 38460a1465

View File

@ -13,3 +13,8 @@ func (this *nft) GetRawData() string {
func (this *nft) GetJsonData() interface{} {
return this.jsonData
}
func newNft() *nft {
p := new(nft)
return p
}