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

26 lines
501 B
TypeScript
Raw Normal View History

2017-10-09 12:28:44 +00:00
import { NgModule } from '@angular/core'
import { VideoAddRoutingModule } from './video-add-routing.module'
import { VideoAddComponent } from './video-add.component'
import { VideoEditModule } from './video-edit.module'
2017-10-09 12:28:44 +00:00
import { SharedModule } from '../../shared'
@NgModule({
imports: [
VideoAddRoutingModule,
VideoEditModule,
2017-10-09 12:28:44 +00:00
SharedModule
],
declarations: [
VideoAddComponent
],
exports: [
VideoAddComponent
],
providers: [ ]
2017-10-09 12:28:44 +00:00
})
export class VideoAddModule { }