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