# Conflicts: # src/app/app.component.html # src/app/app.component.ts # src/app/app.module.ts # src/app/modules/dyn-form/dyn-form.module.ts
22 lines
542 B
TypeScript
22 lines
542 B
TypeScript
import {NgModule} from '@angular/core';
|
|
import {BrowserModule} from '@angular/platform-browser';
|
|
|
|
import {AppComponent} from './app.component';
|
|
import {DynFormModule} from './modules/dyn-form/dyn-form.module';
|
|
import {HttpCachedService} from './services/http-cached.service';
|
|
import {HttpModule} from '@angular/http';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
BrowserModule,
|
|
DynFormModule,
|
|
HttpModule
|
|
],
|
|
declarations: [ AppComponent ],
|
|
providers: [
|
|
HttpCachedService
|
|
],
|
|
bootstrap: [ AppComponent ]
|
|
})
|
|
export class AppModule { }
|