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

                                                            

                                                                        
                                                                                   


            
                             
                    










                        


                       

                                  
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'

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

  declarations: [
    VideoUpdateComponent
  ],

  exports: [
    VideoUpdateComponent
  ],

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