]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/videos.module.ts
Use async/await in lib and initializers
[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'
df98563e 5import { LoaderComponent, VideoListComponent, VideoMiniatureComponent, VideoSortComponent } from './video-list'
df98563e
C
6import { VideoService } from './shared'
7import { SharedModule } from '../shared'
693b1aba
C
8
9@NgModule({
10 imports: [
11 VideosRoutingModule,
12 SharedModule
13 ],
14
15 declarations: [
16 VideosComponent,
17
693b1aba
C
18 VideoListComponent,
19 VideoMiniatureComponent,
20 VideoSortComponent,
21
693b1aba
C
22 LoaderComponent
23 ],
24
25 exports: [
26 VideosComponent
27 ],
28
29 providers: [
aa8b6df4 30 VideoService
693b1aba
C
31 ]
32})
33export class VideosModule { }