]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-edit/video-add.module.ts
Fix lint
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-add.module.ts
1 import { NgModule } from '@angular/core'
2
3 import { TagInputModule } from 'ngx-chips'
4
5 import { VideoAddRoutingModule } from './video-add-routing.module'
6 import { VideoAddComponent } from './video-add.component'
7 import { VideoService } from '../shared'
8 import { SharedModule } from '../../shared'
9
10 @NgModule({
11 imports: [
12 TagInputModule,
13
14 VideoAddRoutingModule,
15 SharedModule
16 ],
17
18 declarations: [
19 VideoAddComponent
20 ],
21
22 exports: [
23 VideoAddComponent
24 ],
25
26 providers: [
27 VideoService
28 ]
29 })
30 export class VideoAddModule { }