mirror of
https://github.com/InsanusMokrassar/BooruGrabberTelegramBot.git
synced 2025-09-03 15:19:21 +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
|
|
)
|