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


                                                                                                   

                                                                  


            
                          
 


                    
    
 
                 

                         
                            
                                

                        
    


               
               

                               
import { UploadxModule } from 'ngx-uploadx'
import { NgModule } from '@angular/core'
import { VideoEditModule } from './shared/video-edit.module'
import { DragDropDirective } from './video-add-components/drag-drop.directive'
import { VideoGoLiveComponent } from './video-add-components/video-go-live.component'
import { VideoImportTorrentComponent } from './video-add-components/video-import-torrent.component'
import { VideoImportUrlComponent } from './video-add-components/video-import-url.component'
import { VideoUploadComponent } from './video-add-components/video-upload.component'
import { VideoAddRoutingModule } from './video-add-routing.module'
import { VideoAddComponent } from './video-add.component'

@NgModule({
  imports: [
    VideoAddRoutingModule,

    VideoEditModule,

    UploadxModule
  ],

  declarations: [
    VideoAddComponent,
    VideoUploadComponent,
    VideoImportUrlComponent,
    VideoImportTorrentComponent,
    DragDropDirective,
    VideoGoLiveComponent
  ],

  exports: [ ],

  providers: []
})
export class VideoAddModule { }