org.babyfish.jimmer.sql.kt.cfg.KCustomizer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jimmer-sql-kotlin Show documentation
Show all versions of jimmer-sql-kotlin Show documentation
A revolutionary ORM framework for both java and kotlin
package org.babyfish.jimmer.sql.kt.cfg
import org.babyfish.jimmer.sql.kt.cfg.impl.JavaCustomizer
import org.babyfish.jimmer.sql.runtime.Customizer
fun interface KCustomizer {
fun customize(dsl: KSqlClientDsl): Unit
}
fun KCustomizer.toJavaCustomizer(): Customizer =
JavaCustomizer(this)