]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-edit/video-update.module.ts
Extract extensions from the button
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-update.module.ts
1 import { NgModule } from '@angular/core'
2 import { SharedModule } from '../../shared'
3 import { VideoEditModule } from './shared/video-edit.module'
4 import { VideoUpdateRoutingModule } from './video-update-routing.module'
5 import { 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 })
24 export class VideoUpdateModule { }