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