aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+video-studio/video-studio.module.ts
blob: 7c1dc02eae3c05884f67c509db193e3ae2c0b3ba (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
import { NgModule } from '@angular/core'
import { SharedFormModule } from '@app/shared/shared-forms'
import { SharedMainModule } from '@app/shared/shared-main'
import { VideoStudioEditComponent } from './edit'
import { VideoStudioService } from './shared'
import { VideoStudioRoutingModule } from './video-studio-routing.module'

@NgModule({
  imports: [
    VideoStudioRoutingModule,

    SharedMainModule,
    SharedFormModule
  ],

  declarations: [
    VideoStudioEditComponent
  ],

  exports: [],

  providers: [
    VideoStudioService
  ]
})
export class VideoStudioModule { }