chore: bump dep version

This commit is contained in:
2024-08-30 15:05:51 +08:00
parent bf75cfad38
commit 27f691b48a
12 files changed
+58 -35

No files matched your search

@@ -11,6 +11,9 @@ import cn.rtast.fancybot.entity.Config
import cn.rtast.fancybot.util.JsonFileHandler
class ConfigManager : JsonFileHandler<Config>("config.json") {
val ncmAPI get() = this.read<Config>().cnmApi
val ncmAPI get() = this.read<Config>().ncmAPI
val wsAddress get() = this.read<Config>().wsAddress
val wsPort get() = this.read<Config>().port
val accessToken get() = this.read<Config>().accessToken
val wsType get() = this.read<Config>().wsType
}