cfa466ffa3e3e83c9a517f2a88b5206c8677676f
[sdc.git] / catalog-ui / src / app / ng2 / pages / service-dependencies-editor / service-dependencies-editor.module.ts
1 import { CommonModule } from '@angular/common';
2 import { NgModule } from '@angular/core';
3 import { FormsModule } from '@angular/forms';
4 import { FormElementsModule } from 'app/ng2/components/ui/form-components/form-elements.module';
5 import { UiElementsModule } from 'app/ng2/components/ui/ui-elements.module';
6 import { ServiceDependenciesEditorComponent } from './service-dependencies-editor.component';
7 import { PropertyTableModule } from 'app/ng2/components/logic/properties-table/property-table.module';
8
9 @NgModule({
10     declarations: [
11         ServiceDependenciesEditorComponent
12     ],
13     imports: [
14         CommonModule,
15         FormsModule,
16         FormElementsModule,
17         UiElementsModule,
18         PropertyTableModule
19     ],
20     exports: [],
21     entryComponents: [
22         ServiceDependenciesEditorComponent
23     ],
24     providers: []
25 })
26 export class ServiceDependenciesEditorModule {
27 }