PeerTube/client/src/app/videos/+video-edit/video-add.module.ts

27 lines
582 B
TypeScript

import { NgModule } from '@angular/core'
import { ProgressBarModule } from 'primeng/primeng'
import { SharedModule } from '../../shared'
import { VideoEditModule } from './shared/video-edit.module'
import { VideoAddRoutingModule } from './video-add-routing.module'
import { VideoAddComponent } from './video-add.component'
@NgModule({
imports: [
VideoAddRoutingModule,
VideoEditModule,
SharedModule,
ProgressBarModule
],
declarations: [
VideoAddComponent
],
exports: [
VideoAddComponent
],
providers: [ ]
})
export class VideoAddModule { }