]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-thumbnail/shared-thumbnail.module.ts
Cleanup lives on server restart
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-thumbnail / shared-thumbnail.module.ts
1
2 import { NgModule } from '@angular/core'
3 import { SharedGlobalIconModule } from '../shared-icons'
4 import { SharedMainModule } from '../shared-main/shared-main.module'
5 import { VideoThumbnailComponent } from './video-thumbnail.component'
6
7 @NgModule({
8 imports: [
9 SharedMainModule,
10 SharedGlobalIconModule
11 ],
12
13 declarations: [
14 VideoThumbnailComponent
15 ],
16
17 exports: [
18 VideoThumbnailComponent
19 ],
20
21 providers: [ ]
22 })
23 export class SharedThumbnailModule { }