io.bootique.mvc.MvcModuleProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bootique-mvc Show documentation
Show all versions of bootique-mvc Show documentation
Provides basic abstractions for web MVC in Bootique.
package io.bootique.mvc;
import com.google.inject.Module;
import io.bootique.BQModuleProvider;
public class MvcModuleProvider implements BQModuleProvider {
@Override
public Module module() {
return new MvcModule();
}
}