blob: 1a87635397bf0f1eafe8f831602408b09c01fbb6 (
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
27
|
import { NgModule } from '@angular/core'
import { SharedFormModule } from '@app/shared/shared-forms'
import { SharedMainModule } from '@app/shared/shared-main'
import { VideoStudioEditComponent, VideoStudioEditResolver } from './edit'
import { VideoStudioService } from './shared'
import { VideoStudioRoutingModule } from './video-studio-routing.module'
@NgModule({
imports: [
VideoStudioRoutingModule,
SharedMainModule,
SharedFormModule
],
declarations: [
VideoStudioEditComponent
],
exports: [],
providers: [
VideoStudioService,
VideoStudioEditResolver
]
})
export class VideoStudioModule { }
|