缓存处理

This commit is contained in:
筱锋xiao_lfeng 2023-11-29 22:14:31 +08:00
parent 3394b01962
commit 698f63507f

View File

@ -0,0 +1,10 @@
package com.xlf.dromstarkotlin.cache
object CacheData {
val tokenVisits = HashMap<String, CacheToken>()
}
data class CacheToken(
var count: Long = 0,
val timestamp: Long,
)