import com.gwtplatform.carstore.server.dispatch.DispatchModule;
public class ServerModule extends AbstractModule {
@Override
protected void configure() {
install(new ApiModule());
install(new DispatchModule());
bind(PasswordSecurity.class).to(BCryptPasswordSecurity.class).in(Singleton.class);
bind(DevBootStrapper.class).asEagerSingleton();
}