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