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

ru.tinkoff.kora.database.jdbi.JdbiModule Maven / Gradle / Ivy

There is a newer version: 1.1.15
Show newest version
package ru.tinkoff.kora.database.jdbi;

import org.jdbi.v3.core.Jdbi;

import javax.sql.DataSource;

public interface JdbiModule {
    default Jdbi jdbiDataBase(DataSource datasource) {
        return Jdbi.create(datasource);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy