aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/composition/graph/service-path-creator/service-path-creator.module.ts
blob: 78005317a2ae25bcf1f534fa14049adc4c7b2d0c (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
25
import { NgModule } from "@angular/core";
import {CommonModule} from "@angular/common";
import {ServicePathCreatorComponent} from "./service-path-creator.component";
import {FormsModule} from "@angular/forms";
import {FormElementsModule} from "app/ng2/components/ui/form-components/form-elements.module";
import {UiElementsModule} from "app/ng2/components/ui/ui-elements.module";
import {LinkRowComponent} from './link-row/link-row.component'
@NgModule({
    declarations: [
        ServicePathCreatorComponent,
        LinkRowComponent
    ],
    imports: [CommonModule,
        FormsModule,
        FormElementsModule,
        UiElementsModule
    ],
    exports: [],
    entryComponents: [
        ServicePathCreatorComponent
    ],
    providers: []
})
export class ServicePathCreatorModule {
}