blob: c35c2caa3b16ba186c23989771ef1d63063b28d6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
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 { }
|