]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+video-editor/video-editor.module.ts
Add basic video editor support
[github/Chocobozzz/PeerTube.git] / client / src / app / +video-editor / video-editor.module.ts
1 import { NgModule } from '@angular/core'
2 import { SharedFormModule } from '@app/shared/shared-forms'
3 import { SharedMainModule } from '@app/shared/shared-main'
4 import { VideoEditorEditComponent, VideoEditorEditResolver } from './edit'
5 import { VideoEditorService } from './shared'
6 import { VideoEditorRoutingModule } from './video-editor-routing.module'
7
8 @NgModule({
9 imports: [
10 VideoEditorRoutingModule,
11
12 SharedMainModule,
13 SharedFormModule
14 ],
15
16 declarations: [
17 VideoEditorEditComponent
18 ],
19
20 exports: [],
21
22 providers: [
23 VideoEditorService,
24 VideoEditorEditResolver
25 ]
26 })
27 export class VideoEditorModule { }