This commit is contained in:
aozhiwei 2024-06-16 19:11:51 +08:00
parent adfbf4c4dc
commit cd31ec576c

View File

@ -1,11 +1,11 @@
package cache
import (
"f5"
"q5"
)
type nft struct {
refreshTime int64
refreshTick int64
rawData string
jsonData interface{}
}
@ -20,6 +20,6 @@ func (this *nft) GetJsonData() interface{} {
func newNft() *nft {
p := new(nft)
p.refreshTime = f5.GetApp().GetRealSeconds()
p.refreshTick = q5.GetTickCount()
return p
}