2017-09-26 18:13:00 +02:00
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
|
|
import { FlexLayoutModule } from '@angular/flex-layout';
|
|
|
|
import { AppMaterialModule } from './app.material.module';
|
|
|
|
|
|
|
|
import { routing } from './app.routing';
|
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
import { DashboardComponent } from './components/dashboard/dashboard.component';
|
|
|
|
|
|
|
|
import { OpenviduRestService } from './services/openvidu-rest.service';
|
2017-09-28 19:13:29 +02:00
|
|
|
import { OpenviduInstanceComponent } from './components/openvidu-instance/openvidu-instance.component';
|
2017-09-26 18:13:00 +02:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
|
|
|
AppComponent,
|
2017-09-28 19:13:29 +02:00
|
|
|
DashboardComponent,
|
|
|
|
OpenviduInstanceComponent
|
2017-09-26 18:13:00 +02:00
|
|
|
],
|
|
|
|
imports: [
|
|
|
|
BrowserModule,
|
|
|
|
FormsModule,
|
|
|
|
BrowserAnimationsModule,
|
|
|
|
AppMaterialModule,
|
|
|
|
FlexLayoutModule,
|
|
|
|
routing
|
|
|
|
],
|
2017-09-27 16:24:39 +02:00
|
|
|
providers: [
|
|
|
|
OpenviduRestService
|
|
|
|
],
|
2017-09-26 18:13:00 +02:00
|
|
|
bootstrap: [AppComponent]
|
|
|
|
})
|
|
|
|
export class AppModule { }
|