]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/recommendations/recommendations.module.ts
provide specific engine boundaries for nodejs and yarn
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / recommendations / recommendations.module.ts
1 import { NgModule } from '@angular/core'
2 import { InputSwitchModule } from 'primeng/inputswitch'
3 import { RecommendedVideosComponent } from '@app/videos/recommendations/recommended-videos.component'
4 import { RecommendedVideosStore } from '@app/videos/recommendations/recommended-videos.store'
5 import { CommonModule } from '@angular/common'
6 import { SharedModule } from '@app/shared'
7 import { RecentVideosRecommendationService } from '@app/videos/recommendations/recent-videos-recommendation.service'
8
9 @NgModule({
10 imports: [
11 InputSwitchModule,
12 SharedModule,
13 CommonModule
14 ],
15 declarations: [
16 RecommendedVideosComponent
17 ],
18 exports: [
19 RecommendedVideosComponent
20 ],
21 providers: [
22 RecommendedVideosStore,
23 RecentVideosRecommendationService
24 ]
25 })
26 export class RecommendationsModule {
27 }