com.github.zhengframework.jdbc.jdbi.JdbiModuleProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zheng-jdbc-jdbi Show documentation
Show all versions of zheng-jdbc-jdbi Show documentation
zheng framework module: jdbc jdbi support
package com.github.zhengframework.jdbc.jdbi;
import com.github.zhengframework.core.ModuleProvider;
import com.google.inject.Module;
public class JdbiModuleProvider implements ModuleProvider {
@Override
public Module getModule() {
return new JdbiModule();
}
}