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