suppress unused warnings

This commit is contained in:
2025-10-02 11:02:20 +02:00
parent 866a9b19d8
commit 69dc768052

View File

@@ -36,6 +36,7 @@ fun migrate(
}
}
@Suppress("UNUSED")
fun migrate(
configure: Config.() -> Unit
) {
@@ -47,6 +48,7 @@ fun migrate(
class Config {
internal val migrations: MutableList<Migration> = mutableListOf()
@Suppress("UNUSED")
fun migration(
name: String,
migrate: Transaction.() -> Unit,