]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/videos.module.ts
Regenerate translations
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / videos.module.ts
1 import { NgModule } from '@angular/core'
2 import { VideoLocalComponent } from '@app/videos/video-list/video-local.component'
3 import { SharedModule } from '../shared'
4 import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component'
5 import { VideoTrendingComponent } from './video-list/video-trending.component'
6 import { VideosRoutingModule } from './videos-routing.module'
7 import { VideosComponent } from './videos.component'
8 import { VideoUserSubscriptionsComponent } from '@app/videos/video-list/video-user-subscriptions.component'
9 import { VideoOverviewComponent } from '@app/videos/video-list/video-overview.component'
10
11 @NgModule({
12 imports: [
13 VideosRoutingModule,
14 SharedModule
15 ],
16
17 declarations: [
18 VideosComponent,
19
20 VideoTrendingComponent,
21 VideoRecentlyAddedComponent,
22 VideoLocalComponent,
23 VideoUserSubscriptionsComponent,
24 VideoOverviewComponent
25 ],
26
27 exports: [
28 VideosComponent
29 ],
30
31 providers: []
32 })
33 export class VideosModule { }