aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-edit/video-update.module.ts
blob: 99cd8bea14e122164b02f73dfc9fedaf46ae51f8 (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 { CanDeactivateGuard } from '@app/core'
import { VideoEditModule } from './shared/video-edit.module'
import { VideoUpdateRoutingModule } from './video-update-routing.module'
import { VideoUpdateComponent } from './video-update.component'
import { VideoUpdateResolver } from './video-update.resolver'

@NgModule({
  imports: [
    VideoUpdateRoutingModule,

    VideoEditModule
  ],

  declarations: [
    VideoUpdateComponent
  ],

  exports: [ ],

  providers: [
    VideoUpdateResolver,
    CanDeactivateGuard
  ]
})
export class VideoUpdateModule { }