Files
FancyBot/src/main/kotlin/cn/rtast/fancybot/entity/Config.kt
T

23 lines
472 B
Kotlin
Raw Normal View History

2024-08-30 14:24:46 +08:00
/*
* Copyright © 2024 RTAkland
* Author: RTAkland
* Date: 2024/8/30
*/
package cn.rtast.fancybot.entity
import cn.rtast.fancybot.entity.enums.ImageType
2024-08-30 15:05:51 +08:00
import cn.rtast.fancybot.entity.enums.WSType
2024-08-30 14:24:46 +08:00
data class Config(
2024-08-30 15:05:51 +08:00
val ncmAPI: String,
val wsType: WSType,
val wsAddress: String,
val accessToken: String,
val port: Int,
2024-09-04 20:01:09 +08:00
val listeningGroups: List<Long>,
2024-09-12 15:43:44 +08:00
val qweatherKey: String,
val githubKey: String,
val imageType: ImageType,
2024-08-30 14:24:46 +08:00
)