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