io.bootique.linkrest.LinkRestModuleProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bootique-linkrest Show documentation
Show all versions of bootique-linkrest Show documentation
Provides LinkRest integration with Bootique
package io.bootique.linkrest;
import com.google.inject.Module;
import io.bootique.BQModule;
import io.bootique.BQModuleProvider;
public class LinkRestModuleProvider implements BQModuleProvider {
@Override
public Module module() {
return new LinkRestModule();
}
@Override
public BQModule.Builder moduleBuilder() {
return BQModuleProvider.super
.moduleBuilder()
.description("Provides integration with LinkRest framework.");
}
}