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