refactor(http): replace old http with a new one (#1567)

This commit is contained in:
Dmitry Nehaychik 2018-02-23 19:20:27 +03:00 committed by GitHub
parent 2aa114b255
commit 212491a533
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@ import { APP_BASE_HREF } from '@angular/common';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { NgModule } from '@angular/core';
import { HttpModule } from '@angular/http';
import { HttpClientModule } from '@angular/common/http';
import { CoreModule } from './@core/core.module';
import { AppComponent } from './app.component';
@ -20,7 +20,7 @@ import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
imports: [
BrowserModule,
BrowserAnimationsModule,
HttpModule,
HttpClientModule,
AppRoutingModule,
NgbModule.forRoot(),