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