001package org.xbib.elasticsearch.plugin.analysis.standardnumber;
002
003import org.elasticsearch.common.inject.AbstractModule;
004
005public class StandardNumberIndexModule extends AbstractModule {
006
007    @Override
008    protected void configure() {
009        bind(RegisterStandardNumberType.class).asEagerSingleton();
010    }
011}