blob: 5a46ea73988717c72166bf26fb70ad76ff75333b (
plain) (
tree)
|
|
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 {
}
|