blob: 4f5d72cecce7fb39ee9828fda6aa84e7a6199c36 (
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
|
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'
@NgModule({
imports: [
VideoUpdateRoutingModule,
VideoEditModule,
SharedModule
],
declarations: [
VideoUpdateComponent
],
exports: [
VideoUpdateComponent
],
providers: [
VideoUpdateResolver
]
})
export class VideoUpdateModule { }
|