aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/videos/+video-edit/video-update.module.ts
blob: 3b45c72a53a925cc6510d65eb280d46690b559dc (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'

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

  declarations: [
    VideoUpdateComponent
  ],

  exports: [
    VideoUpdateComponent
  ],

  providers: [ ]
})
export class VideoUpdateModule { }