]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - 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
1import { NgModule } from '@angular/core'
2
3import { VideoAddRoutingModule } from './video-add-routing.module'
4import { VideoAddComponent } from './video-add.component'
5import { VideoEditModule } from './video-edit.module'
6import { SharedModule } from '../../shared'
7
8@NgModule({
9 imports: [
10 VideoAddRoutingModule,
11 VideoEditModule,
12 SharedModule
13 ],
14
15 declarations: [
16 VideoAddComponent
17 ],
18
19 exports: [
20 VideoAddComponent
21 ],
22
23 providers: [ ]
24})
25export class VideoAddModule { }