2017-06-16 14:32:15 +02:00
|
|
|
import { NgModule } from '@angular/core'
|
2017-11-28 15:40:53 +01:00
|
|
|
import { SharedModule } from '../shared'
|
|
|
|
import { VideoService } from './shared'
|
2017-12-01 14:46:22 +01:00
|
|
|
import { MyVideosComponent, VideoMiniatureComponent } from './video-list'
|
|
|
|
import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component'
|
|
|
|
import { VideoTrendingComponent } from './video-list/video-trending.component'
|
2017-06-16 14:32:15 +02:00
|
|
|
import { VideosRoutingModule } from './videos-routing.module'
|
|
|
|
import { VideosComponent } from './videos.component'
|
2016-11-20 17:18:15 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
VideosRoutingModule,
|
|
|
|
SharedModule
|
|
|
|
],
|
|
|
|
|
|
|
|
declarations: [
|
|
|
|
VideosComponent,
|
|
|
|
|
2017-12-01 14:46:22 +01:00
|
|
|
VideoTrendingComponent,
|
|
|
|
VideoRecentlyAddedComponent,
|
2017-10-31 11:52:52 +01:00
|
|
|
MyVideosComponent,
|
2017-12-01 14:46:22 +01:00
|
|
|
VideoMiniatureComponent
|
2016-11-20 17:18:15 +01:00
|
|
|
],
|
|
|
|
|
|
|
|
exports: [
|
|
|
|
VideosComponent
|
|
|
|
],
|
|
|
|
|
|
|
|
providers: [
|
2017-10-06 10:40:09 +02:00
|
|
|
VideoService
|
2016-11-20 17:18:15 +01:00
|
|
|
]
|
|
|
|
})
|
|
|
|
export class VideosModule { }
|