Subversion Repositories SmartDukaan

Rev

Rev 167 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package in.shop2020.hotspot.dashbaord.server.guice;

import com.google.inject.Guice;
import com.google.inject.Injector;
import com.google.inject.servlet.GuiceServletContextListener;

public class ServletConfig extends GuiceServletContextListener{

        @Override
        protected Injector getInjector() {
                
                return Guice.createInjector(new ServerModule(), new DispatchServletModule());
        }

}