aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-edit/video-add.module.ts
blob: 141d33ad2cc922f75518541767a06c110ab1aac4 (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 { VideoAddRoutingModule } from './video-add-routing.module'
import { VideoAddComponent } from './video-add.component'
import { VideoService } from '../shared'
import { SharedModule } from '../../shared'

@NgModule({
  imports: [
    TagInputModule,

    VideoAddRoutingModule,
    SharedModule
  ],

  declarations: [
    VideoAddComponent
  ],

  exports: [
    VideoAddComponent
  ],

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