]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/videos/+video-edit/shared/video-edit.module.ts
Decrease AP video cache
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / shared / video-edit.module.ts
... / ...
CommitLineData
1import { NgModule } from '@angular/core'
2import { TabsModule } from 'ngx-bootstrap/tabs'
3import { TagInputModule } from 'ngx-chips'
4import { SharedModule } from '../../../shared/'
5import { VideoEditComponent } from './video-edit.component'
6import { VideoImageComponent } from './video-image.component'
7
8@NgModule({
9 imports: [
10 TagInputModule,
11
12 SharedModule
13 ],
14
15 declarations: [
16 VideoEditComponent,
17 VideoImageComponent
18 ],
19
20 exports: [
21 TagInputModule,
22 TabsModule,
23
24 VideoEditComponent
25 ],
26
27 providers: []
28})
29export class VideoEditModule { }