001package org.xbib.elasticsearch.http.netty;
002
003import org.elasticsearch.common.inject.AbstractModule;
004import org.xbib.elasticsearch.http.HttpServerTransport;
005
006/**
007 * Module for HttpServerModule.
008 */
009public class NettyWebSocketServerTransportModule extends AbstractModule {
010
011    @Override
012    protected void configure() {
013        bind(HttpServerTransport.class).to(NettyWebSocketServerTransport.class).asEagerSingleton();
014    }
015}