]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-edit/shared/video-edit.module.ts
Add/update/delete/list my playlists
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / shared / video-edit.module.ts
1 import { NgModule } from '@angular/core'
2 import { TagInputModule } from 'ngx-chips'
3 import { SharedModule } from '../../../shared/'
4 import { VideoEditComponent } from './video-edit.component'
5 import { CalendarModule } from 'primeng/components/calendar/calendar'
6 import { VideoCaptionAddModalComponent } from './video-caption-add-modal.component'
7
8 @NgModule({
9 imports: [
10 TagInputModule,
11 CalendarModule,
12
13 SharedModule
14 ],
15
16 declarations: [
17 VideoEditComponent,
18 VideoCaptionAddModalComponent
19 ],
20
21 exports: [
22 TagInputModule,
23 CalendarModule,
24
25 VideoEditComponent
26 ],
27
28 providers: []
29 })
30 export class VideoEditModule { }