]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-video-live/shared-video-live.module.ts
c35c2caa3b16ba186c23989771ef1d63063b28d6
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-video-live / shared-video-live.module.ts
1
2 import { NgModule } from '@angular/core'
3 import { SharedFormModule } from '../shared-forms'
4 import { SharedGlobalIconModule } from '../shared-icons'
5 import { SharedMainModule } from '../shared-main/shared-main.module'
6 import { LiveStreamInformationComponent } from './live-stream-information.component'
7 import { LiveVideoService } from './live-video.service'
8
9 @NgModule({
10 imports: [
11 SharedMainModule,
12 SharedFormModule,
13 SharedGlobalIconModule
14 ],
15
16 declarations: [
17 LiveStreamInformationComponent
18 ],
19
20 exports: [
21 LiveStreamInformationComponent
22 ],
23
24 providers: [
25 LiveVideoService
26 ]
27 })
28 export class SharedVideoLiveModule { }