aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/videos/videos.module.ts
blob: 5cf1e944f4b7ea79d3d198ecbc0b78d500341545 (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 { 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,
    VideoRecentlyAddedComponent,
    VideoLocalComponent,
    VideoUserSubscriptionsComponent,
    VideoOverviewComponent
  ],

  exports: [
    VideosComponent
  ],

  providers: []
})
export class VideosModule { }