All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.bootique.linkrest.LinkRestModuleProvider Maven / Gradle / Ivy

There is a newer version: 0.25
Show newest version
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.");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy