Catalog alignment
[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
8 @NgModule({
9     declarations: [
10         ServiceDependenciesEditorComponent
11     ],
12     imports: [
13         CommonModule,
14         FormsModule,
15         FormElementsModule,
16         UiElementsModule
17     ],
18     exports: [],
19     entryComponents: [
20         ServiceDependenciesEditorComponent
21     ],
22     providers: []
23 })
24 export class ServiceDependenciesEditorModule {
25 }