com.sxtanna.db.struct.statement.use.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Kuery Show documentation
Show all versions of Kuery Show documentation
MySQL Kotlin DSL/ORM based on HikariCP
package com.sxtanna.db.struct.statement
import com.sxtanna.db.struct.Database
/**
* An object that can use (switch/select) a specific [Database]
*/
interface DBUser { // spooky name lol..
/**
* Use this database
*/
fun use(database : Database)
}