All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.monosoul.jooq.settings.DbAware.kt Maven / Gradle / Ivy

There is a newer version: 6.1.14
Show newest version
package dev.monosoul.jooq.settings

import dev.monosoul.jooq.util.callWith
import groovy.lang.Closure
import org.gradle.api.Action

internal interface DbAware {
    /**
     * Configure the database settings.
     */
    fun db(customizer: Action)

    /**
     * Configure the database settings.
     */
    fun db(closure: Closure) = db(closure::callWith)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy