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