aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/composition/graph/service-path-selector/service-path-selector.module.ts
blob: 6782c88b7699244481c1156958f45e01f0d70a62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { NgModule } from "@angular/core";
import {CommonModule} from "@angular/common";
import {ServicePathSelectorComponent} from "./service-path-selector.component";
import {UiElementsModule} from "app/ng2/components/ui/ui-elements.module";
import {CompositionService} from "app/ng2/pages/composition/composition.service";

@NgModule({
    declarations: [
        ServicePathSelectorComponent
    ],
    imports: [
    	CommonModule,
    	UiElementsModule
    ],
    exports: [ServicePathSelectorComponent],
    entryComponents: [
        ServicePathSelectorComponent
    ],
    providers: [CompositionService]
})
export class ServicePathSelectorModule {
}