]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/video-add.module.ts
Add progress bar for video upload
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-add.module.ts
CommitLineData
a685e25c 1import { NgModule } from '@angular/core'
c182778e 2import { ProgressBarModule } from 'primeng/primeng'
80958c78
C
3import { SharedModule } from '../../shared'
4import { VideoEditModule } from './shared/video-edit.module'
a685e25c
C
5import { VideoAddRoutingModule } from './video-add-routing.module'
6import { VideoAddComponent } from './video-add.component'
a685e25c
C
7
8@NgModule({
9 imports: [
a685e25c 10 VideoAddRoutingModule,
2de96f4d 11 VideoEditModule,
c182778e
C
12 SharedModule,
13 ProgressBarModule
a685e25c
C
14 ],
15
16 declarations: [
17 VideoAddComponent
18 ],
19
20 exports: [
21 VideoAddComponent
22 ],
23
2de96f4d 24 providers: [ ]
a685e25c
C
25})
26export class VideoAddModule { }