aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+video-editor/video-editor.module.ts
blob: 7bbebc17b7da5cf6dddbc3d1227c6688f6fb82e7 (plain) (tree)


























                                                                          
import { NgModule } from '@angular/core'
import { SharedFormModule } from '@app/shared/shared-forms'
import { SharedMainModule } from '@app/shared/shared-main'
import { VideoEditorEditComponent, VideoEditorEditResolver } from './edit'
import { VideoEditorService } from './shared'
import { VideoEditorRoutingModule } from './video-editor-routing.module'

@NgModule({
  imports: [
    VideoEditorRoutingModule,

    SharedMainModule,
    SharedFormModule
  ],

  declarations: [
    VideoEditorEditComponent
  ],

  exports: [],

  providers: [
    VideoEditorService,
    VideoEditorEditResolver
  ]
})
export class VideoEditorModule { }