blob: f3981d27523429439df4ecfaf16aff9c3dad51ef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
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 { }
|