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