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