]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-edit/video-add.module.ts
3d937b008f05bf4a04731ce6cecc8f7d209a4c7d
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-add.module.ts
1 import { NgModule } from '@angular/core'
2
3 import { VideoAddRoutingModule } from './video-add-routing.module'
4 import { VideoAddComponent } from './video-add.component'
5 import { VideoEditModule } from './video-edit.module'
6 import { 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 })
25 export class VideoAddModule { }