mirror of
https://github.com/InsanusMokrassar/BooruGrabberTelegramBot.git
synced 2025-10-17 21:30:36 +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
|
|
)
|