mirror of
https://github.com/InsanusMokrassar/PlaguBot.git
synced 2025-12-05 13:55:53 +00:00
10 lines
177 B
Kotlin
10 lines
177 B
Kotlin
package dev.inmo.plagubot.config
|
|
|
|
import kotlinx.serialization.Serializable
|
|
|
|
@Serializable
|
|
data class DBConnectOptions(
|
|
val attempts: Int = 3,
|
|
val delay: Long = 1000L
|
|
)
|