You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
index/src/main/kotlin/moe/odango/index/config/DatabaseConfiguration.kt

9 lines
193 B
Kotlin

package moe.odango.index.config
data class DatabaseConfiguration(
val uri: String,
val driver: String = "sqlite",
val username: String? = null,
val password: String? = null
)