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

                                                                                         
                                                                                 

                                                             
                                                                                                           
                                                                                        



                        
                




                    
                           
                            
                                
                        

                                    





                   
               

                             
import { NgModule } from '@angular/core'
import { VideoLocalComponent } from '@app/videos/video-list/video-local.component'
import { SharedModule } from '../shared'
import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component'
import { VideoTrendingComponent } from './video-list/video-trending.component'
import { VideoMostLikedComponent } from './video-list/video-most-liked.component'
import { VideosRoutingModule } from './videos-routing.module'
import { VideosComponent } from './videos.component'
import { VideoUserSubscriptionsComponent } from '@app/videos/video-list/video-user-subscriptions.component'
import { VideoOverviewComponent } from '@app/videos/video-list/video-overview.component'

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

  declarations: [
    VideosComponent,

    VideoTrendingComponent,
    VideoMostLikedComponent,
    VideoRecentlyAddedComponent,
    VideoLocalComponent,
    VideoUserSubscriptionsComponent,
    VideoOverviewComponent
  ],

  exports: [
    VideosComponent
  ],

  providers: []
})
export class VideosModule { }