CSIT Fix for SDC-2585
[sdc.git] / catalog-ui / src / app / ng2 / pages / composition / graph / service-path-creator / service-path-creator.module.ts
1 import { NgModule } from "@angular/core";
2 import {CommonModule} from "@angular/common";
3 import {ServicePathCreatorComponent} from "./service-path-creator.component";
4 import {FormsModule} from "@angular/forms";
5 import {FormElementsModule} from "app/ng2/components/ui/form-components/form-elements.module";
6 import {UiElementsModule} from "app/ng2/components/ui/ui-elements.module";
7 import {LinkRowComponent} from './link-row/link-row.component'
8 @NgModule({
9     declarations: [
10         ServicePathCreatorComponent,
11         LinkRowComponent
12     ],
13     imports: [CommonModule,
14         FormsModule,
15         FormElementsModule,
16         UiElementsModule
17     ],
18     exports: [],
19     entryComponents: [
20         ServicePathCreatorComponent
21     ],
22     providers: []
23 })
24 export class ServicePathCreatorModule {
25 }