blob: 5a46ea73988717c72166bf26fb70ad76ff75333b (
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
|
import { NgModule } from '@angular/core'
import { RecommendedVideosComponent } from '@app/videos/recommendations/recommended-videos.component'
import { RecommendedVideosStore } from '@app/videos/recommendations/recommended-videos.store'
import { CommonModule } from '@angular/common'
import { SharedModule } from '@app/shared'
import { RecentVideosRecommendationService } from '@app/videos/recommendations/recent-videos-recommendation.service'
@NgModule({
imports: [
SharedModule,
CommonModule
],
declarations: [
RecommendedVideosComponent
],
exports: [
RecommendedVideosComponent
],
providers: [
RecommendedVideosStore,
RecentVideosRecommendationService
]
})
export class RecommendationsModule {
}
|