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