diff --git a/src/main/kotlin/com/xlf/dromstarkotlin/cache/CacheData.kt b/src/main/kotlin/com/xlf/dromstarkotlin/cache/CacheData.kt new file mode 100644 index 0000000..05b8824 --- /dev/null +++ b/src/main/kotlin/com/xlf/dromstarkotlin/cache/CacheData.kt @@ -0,0 +1,10 @@ +package com.xlf.dromstarkotlin.cache + +object CacheData { + val tokenVisits = HashMap() +} + +data class CacheToken( + var count: Long = 0, + val timestamp: Long, +) \ No newline at end of file