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