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