io.mstream.trader.commons.http.HttpModule Maven / Gradle / Ivy
The newest version!
package io.mstream.trader.commons.http;
import com.google.inject.AbstractModule;
import io.mstream.trader.commons.http.parameter.ParametersFactory;
import static com.google.inject.Scopes.SINGLETON;
public class HttpModule extends AbstractModule {
@Override
protected void configure() {
binder().requireExplicitBindings();
bind(ParametersFactory.class)
.in(SINGLETON);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy