]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/videos.module.ts
Preferably use the docker hub image
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / videos.module.ts
CommitLineData
df98563e 1import { NgModule } from '@angular/core'
066e94c5 2import { VideoLocalComponent } from '@app/videos/video-list/video-local.component'
80958c78 3import { SharedModule } from '../shared'
b1fa3eba 4import { VideoSearchComponent } from './video-list'
9bf9d2a5
C
5import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component'
6import { VideoTrendingComponent } from './video-list/video-trending.component'
df98563e
C
7import { VideosRoutingModule } from './videos-routing.module'
8import { VideosComponent } from './videos.component'
693b1aba
C
9
10@NgModule({
11 imports: [
12 VideosRoutingModule,
202f6b6c 13 SharedModule
693b1aba
C
14 ],
15
16 declarations: [
17 VideosComponent,
18
9bf9d2a5
C
19 VideoTrendingComponent,
20 VideoRecentlyAddedComponent,
066e94c5 21 VideoLocalComponent,
f3aaa9a9 22 VideoSearchComponent
693b1aba
C
23 ],
24
25 exports: [
26 VideosComponent
27 ],
28
202f6b6c 29 providers: []
693b1aba
C
30})
31export class VideosModule { }