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