mirror of https://github.com/OpenVidu/openvidu.git
22 lines
508 B
TypeScript
22 lines
508 B
TypeScript
![]() |
import { BrowserModule } from '@angular/platform-browser';
|
||
|
import { NgModule } from '@angular/core';
|
||
|
import { FormsModule } from '@angular/forms';
|
||
|
import { HttpModule } from '@angular/http';
|
||
|
|
||
|
import { AppComponent } from './app.component';
|
||
|
import { StreamComponent } from "./stream.component";
|
||
|
|
||
|
@NgModule({
|
||
|
declarations: [
|
||
|
AppComponent, StreamComponent
|
||
|
],
|
||
|
imports: [
|
||
|
BrowserModule,
|
||
|
FormsModule,
|
||
|
HttpModule
|
||
|
],
|
||
|
providers: [],
|
||
|
bootstrap: [AppComponent]
|
||
|
})
|
||
|
export class AppModule { }
|