]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/videos.module.ts
Update client according to new model paths
[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'
9bf9d2a5
C
4import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component'
5import { VideoTrendingComponent } from './video-list/video-trending.component'
df98563e
C
6import { VideosRoutingModule } from './videos-routing.module'
7import { VideosComponent } from './videos.component'
693b1aba
C
8
9@NgModule({
10 imports: [
11 VideosRoutingModule,
202f6b6c 12 SharedModule
693b1aba
C
13 ],
14
15 declarations: [
16 VideosComponent,
17
9bf9d2a5
C
18 VideoTrendingComponent,
19 VideoRecentlyAddedComponent,
57c36b27 20 VideoLocalComponent
693b1aba
C
21 ],
22
23 exports: [
24 VideosComponent
25 ],
26
202f6b6c 27 providers: []
693b1aba
C
28})
29export class VideosModule { }