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

io.mstream.trader.datafeed.handlers.api.stocks.names.GetNamesModule Maven / Gradle / Ivy

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


import com.google.inject.AbstractModule;
import com.google.inject.Scopes;
import ratpack.handling.Handler;

public class GetNamesModule extends AbstractModule {

    @Override
    protected void configure() {

        bind(Handler.class)
                .annotatedWith(GetNames.class)
                .to(GetNamesHandler.class)
                .in(Scopes.SINGLETON);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy