blob: c35c2caa3b16ba186c23989771ef1d63063b28d6 (
plain) (
tree)
|
|
import { NgModule } from '@angular/core'
import { SharedFormModule } from '../shared-forms'
import { SharedGlobalIconModule } from '../shared-icons'
import { SharedMainModule } from '../shared-main/shared-main.module'
import { LiveStreamInformationComponent } from './live-stream-information.component'
import { LiveVideoService } from './live-video.service'
@NgModule({
imports: [
SharedMainModule,
SharedFormModule,
SharedGlobalIconModule
],
declarations: [
LiveStreamInformationComponent
],
exports: [
LiveStreamInformationComponent
],
providers: [
LiveVideoService
]
})
export class SharedVideoLiveModule { }
|