]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/videos.module.ts
ecc351b654c4b3b5abeb22e58efdba3e6dc12ec7
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / videos.module.ts
1 import { NgModule } from '@angular/core'
2
3 import { VideosRoutingModule } from './videos-routing.module'
4 import { VideosComponent } from './videos.component'
5 import {
6 LoaderComponent,
7 VideoListComponent,
8 MyVideosComponent,
9 VideoMiniatureComponent,
10 VideoSortComponent
11 } from './video-list'
12 import { VideoService } from './shared'
13 import { SharedModule } from '../shared'
14
15 @NgModule({
16 imports: [
17 VideosRoutingModule,
18 SharedModule
19 ],
20
21 declarations: [
22 VideosComponent,
23
24 VideoListComponent,
25 MyVideosComponent,
26 VideoMiniatureComponent,
27 VideoSortComponent,
28
29 LoaderComponent
30 ],
31
32 exports: [
33 VideosComponent
34 ],
35
36 providers: [
37 VideoService
38 ]
39 })
40 export class VideosModule { }