aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-edit/video-update.module.ts
blob: eeb2e35e2083a0beac491194c9527577f7f6aaf0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { NgModule } from '@angular/core'

import { TagInputModule } from 'ngx-chips'

import { VideoUpdateRoutingModule } from './video-update-routing.module'
import { VideoUpdateComponent } from './video-update.component'
import { VideoService } from '../shared'
import { SharedModule } from '../../shared'

@NgModule({
  imports: [
    TagInputModule,

    VideoUpdateRoutingModule,
    SharedModule
  ],

  declarations: [
    VideoUpdateComponent
  ],

  exports: [
    VideoUpdateComponent
  ],

  providers: [
    VideoService
  ]
})
export class VideoUpdateModule { }