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