summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/logic/service-dependencies/service-dependencies.module.ts
blob: 7e66ed99c70ef28a2e401a3324ab18087533abe0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { NgModule } from "@angular/core";
import {CommonModule} from "@angular/common";
import {ServiceDependenciesComponent} from "./service-dependencies.component";
import {UiElementsModule} from "app/ng2/components/ui/ui-elements.module";
import {TranslateModule} from 'app/ng2/shared/translator/translate.module';

@NgModule({
    declarations: [
        ServiceDependenciesComponent
    ],
    imports: [
        CommonModule,
        UiElementsModule,
        TranslateModule
    ],
    exports: [],
    entryComponents: [
        ServiceDependenciesComponent
    ],
    providers: []
})
export class ServiceDependenciesModule {
}