aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/videos/+video-edit/video-add.module.ts
blob: f58d12dac6e09fea977917024ad53b04d1a52190 (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 { VideoAddRoutingModule } from './video-add-routing.module'
import { VideoAddComponent } from './video-add.component'

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

  declarations: [
    VideoAddComponent
  ],

  exports: [
    VideoAddComponent
  ],

  providers: [ ]
})
export class VideoAddModule { }