]>
Commit | Line | Data |
---|---|---|
92e66e04 C |
1 | import { NgModule } from '@angular/core' |
2 | import { SharedFormModule } from '@app/shared/shared-forms' | |
3 | import { SharedMainModule } from '@app/shared/shared-main' | |
384ba8b7 | 4 | import { VideoStudioEditComponent } from './edit' |
92e66e04 C |
5 | import { VideoStudioService } from './shared' |
6 | import { VideoStudioRoutingModule } from './video-studio-routing.module' | |
7 | ||
8 | @NgModule({ | |
9 | imports: [ | |
10 | VideoStudioRoutingModule, | |
11 | ||
12 | SharedMainModule, | |
13 | SharedFormModule | |
14 | ], | |
15 | ||
16 | declarations: [ | |
17 | VideoStudioEditComponent | |
18 | ], | |
19 | ||
20 | exports: [], | |
21 | ||
22 | providers: [ | |
384ba8b7 | 23 | VideoStudioService |
92e66e04 C |
24 | ] |
25 | }) | |
26 | export class VideoStudioModule { } |