mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI-bot_template.git
synced 2025-09-04 07:49:17 +00:00
10 lines
158 B
Kotlin
10 lines
158 B
Kotlin
package config
|
|
|
|
import kotlinx.serialization.Serializable
|
|
|
|
@Serializable
|
|
data class Config(
|
|
val token: String,
|
|
val client: HttpClientConfig? = null
|
|
)
|