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