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