]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/videos.module.ts
Client: better confirm box for a beautiful world
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / videos.module.ts
CommitLineData
693b1aba
C
1import { NgModule } from '@angular/core';
2
3import { VideosRoutingModule } from './videos-routing.module';
4import { VideosComponent } from './videos.component';
5import { VideoAddComponent } from './video-add';
6import { VideoListComponent, VideoMiniatureComponent, VideoSortComponent } from './video-list';
4f8c0eb0
C
7import {
8 VideoWatchComponent,
9 VideoMagnetComponent,
10 VideoReportComponent,
11 VideoShareComponent,
12 WebTorrentService
13} from './video-watch';
693b1aba
C
14import { LoaderComponent, VideoService } from './shared';
15import { SharedModule } from '../shared';
16
17@NgModule({
18 imports: [
19 VideosRoutingModule,
20 SharedModule
21 ],
22
23 declarations: [
24 VideosComponent,
25
26 VideoAddComponent,
27
28 VideoListComponent,
29 VideoMiniatureComponent,
30 VideoSortComponent,
31
32 VideoWatchComponent,
33 VideoMagnetComponent,
34 VideoShareComponent,
4f8c0eb0 35 VideoReportComponent,
693b1aba
C
36
37 LoaderComponent
38 ],
39
40 exports: [
41 VideosComponent
42 ],
43
44 providers: [
45 VideoService,
46 WebTorrentService
47 ]
48})
49export class VideosModule { }