mirror of
https://github.com/InsanusMokrassar/BooruGrabberTelegramBot.git
synced 2025-10-15 04:10:17 +00:00
11 lines
192 B
Kotlin
11 lines
192 B
Kotlin
package models
|
|
|
|
import kotlinx.serialization.Serializable
|
|
|
|
@Serializable
|
|
data class Config(
|
|
val token: String,
|
|
val database: DatabaseConfig,
|
|
val client: HttpClientConfig? = null
|
|
)
|