blob: d60aa699f8ab0e22da4f4896215e9afa5c4b8c01 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
import { NgModule } from '@angular/core'
import { SharedModule } from '../../shared'
import { VideoEditModule } from './shared/video-edit.module'
import { VideoUpdateRoutingModule } from './video-update-routing.module'
import { VideoUpdateComponent } from './video-update.component'
import { VideoUpdateResolver } from '@app/videos/+video-edit/video-update.resolver'
import { CanDeactivateGuard } from '@app/shared/guards/can-deactivate-guard.service'
@NgModule({
imports: [
VideoUpdateRoutingModule,
VideoEditModule,
SharedModule
],
declarations: [
VideoUpdateComponent
],
exports: [
VideoUpdateComponent
],
providers: [
VideoUpdateResolver,
CanDeactivateGuard
]
})
export class VideoUpdateModule { }
|