1
0
Fork 0
peertube/client/src/app/videos/+video-edit/video-add.module.ts

31 lines
551 B
TypeScript
Raw Normal View History

2017-10-09 12:28:44 +00:00
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 { }