]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/videos.module.ts
Add loading bar when updating a video
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / videos.module.ts
CommitLineData
df98563e 1import { NgModule } from '@angular/core'
80958c78 2import { SharedModule } from '../shared'
b1fa3eba 3import { VideoSearchComponent } from './video-list'
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,
f3aaa9a9 20 VideoSearchComponent
693b1aba
C
21 ],
22
23 exports: [
24 VideosComponent
25 ],
26
202f6b6c 27 providers: []
693b1aba
C
28})
29export class VideosModule { }