This commit is contained in:
aozhiwei 2024-06-14 19:31:23 +08:00
parent 5fb2182881
commit bfea83266a
2 changed files with 10 additions and 1 deletions

View File

@ -1,7 +1,11 @@
package cache package cache
type cacheMgr struct { import (
"sync"
)
type cacheMgr struct {
nftHash sync.Map
} }
func (this *cacheMgr) Init() { func (this *cacheMgr) Init() {

5
server/marketserver/cache/nft.go vendored Normal file
View File

@ -0,0 +1,5 @@
package cache
type nft struct {
}