aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/videos/videos.module.ts
blob: f3981d27523429439df4ecfaf16aff9c3dad51ef (plain) (tree)
1
2
3
4
5
6
7
8
9
                                        
                                                          

                                        


                                                                                         

                                                             



                        

                        




                    

                                
                      
                           






                   
                


                             
import { NgModule } from '@angular/core'
import { InfiniteScrollModule } from 'ngx-infinite-scroll'
import { SharedModule } from '../shared'
import { VideoService } from './shared'
import { MyVideosComponent, VideoMiniatureComponent } from './video-list'
import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component'
import { VideoTrendingComponent } from './video-list/video-trending.component'
import { VideosRoutingModule } from './videos-routing.module'
import { VideosComponent } from './videos.component'

@NgModule({
  imports: [
    VideosRoutingModule,
    SharedModule,
    InfiniteScrollModule
  ],

  declarations: [
    VideosComponent,

    VideoTrendingComponent,
    VideoRecentlyAddedComponent,
    MyVideosComponent,
    VideoMiniatureComponent
  ],

  exports: [
    VideosComponent
  ],

  providers: [
    VideoService
  ]
})
export class VideosModule { }