]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/videos/+video-edit/video-add.module.ts
First upload step is ok
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-add.module.ts
... / ...
CommitLineData
1import { NgModule } from '@angular/core'
2import { SharedModule } from '../../shared'
3import { VideoEditModule } from './shared/video-edit.module'
4import { VideoAddRoutingModule } from './video-add-routing.module'
5import { VideoAddComponent } from './video-add.component'
6
7@NgModule({
8 imports: [
9 VideoAddRoutingModule,
10 VideoEditModule,
11 SharedModule
12 ],
13
14 declarations: [
15 VideoAddComponent
16 ],
17
18 exports: [
19 VideoAddComponent
20 ],
21
22 providers: [ ]
23})
24export class VideoAddModule { }