aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/videos/+video-edit/video-update.module.ts
blob: d60aa699f8ab0e22da4f4896215e9afa5c4b8c01 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                        

                                                            

                                                                        
                                                                                   
                                                                                    


            
                             
                    










                        
              

                        
   

                                  
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'
import { CanDeactivateGuard } from '@app/shared/guards/can-deactivate-guard.service'

@NgModule({
  imports: [
    VideoUpdateRoutingModule,
    VideoEditModule,
    SharedModule
  ],

  declarations: [
    VideoUpdateComponent
  ],

  exports: [
    VideoUpdateComponent
  ],

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