blob: 3d937b008f05bf4a04731ce6cecc8f7d209a4c7d (
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 { VideoAddRoutingModule } from './video-add-routing.module'
import { VideoAddComponent } from './video-add.component'
import { VideoEditModule } from './video-edit.module'
import { SharedModule } from '../../shared'
@NgModule({
imports: [
VideoAddRoutingModule,
VideoEditModule,
SharedModule
],
declarations: [
VideoAddComponent
],
exports: [
VideoAddComponent
],
providers: [ ]
})
export class VideoAddModule { }
|