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

io.mstream.trader.datafeed.handlers.HandlersModule Maven / Gradle / Ivy

The newest version!
package io.mstream.trader.datafeed.handlers;


import com.google.inject.AbstractModule;
import io.mstream.trader.datafeed.handlers.admin.AdminModule;
import io.mstream.trader.datafeed.handlers.api.ApiModule;
import io.mstream.trader.datafeed.handlers.monitoring.MonitoringModule;

import static com.google.inject.Scopes.SINGLETON;


public class HandlersModule
        extends AbstractModule {


    @Override
    protected void configure() {

        install(new ApiModule());
        install(new MonitoringModule());
        install(new AdminModule());

        bind(RootChain.class).in(SINGLETON);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy