blob: 1bfedf25176e60a40ba4cf5689ae6a435c27f7f1 (
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
|
import { NgModule } from '@angular/core'
import { ProgressBarModule } from 'primeng/primeng'
import { SharedModule } from '../../shared'
import { VideoEditModule } from './shared/video-edit.module'
import { VideoAddRoutingModule } from './video-add-routing.module'
import { VideoAddComponent } from './video-add.component'
import { CanDeactivateGuard } from '../../shared/guards/can-deactivate-guard.service'
@NgModule({
imports: [
VideoAddRoutingModule,
VideoEditModule,
SharedModule,
ProgressBarModule
],
declarations: [
VideoAddComponent
],
exports: [
VideoAddComponent
],
providers: [
CanDeactivateGuard
]
})
export class VideoAddModule { }
|