blob: f7bd77c752a69dcb620d2d69f5961d66e7e965d3 (
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
|
import { NgModule } from '@angular/core'
import { VideoUpdateRoutingModule } from './video-update-routing.module'
import { VideoUpdateComponent } from './video-update.component'
import { VideoEditModule } from './video-edit.module'
import { SharedModule } from '../../shared'
@NgModule({
imports: [
VideoUpdateRoutingModule,
VideoEditModule,
SharedModule
],
declarations: [
VideoUpdateComponent
],
exports: [
VideoUpdateComponent
],
providers: [ ]
})
export class VideoUpdateModule { }
|