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

                                                                        
                                                             


            
                             

                   





                        
               
 
              

                        
   

                                  
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 { }