Catalog alignment
[sdc.git] / catalog-ui / src / app / ng2 / pages / composition / graph / service-paths-list / service-paths-list.module.ts
1 import { NgModule } from "@angular/core";
2 import {CommonModule} from "@angular/common";
3 import { ServicePathsListComponent } from "./service-paths-list.component";
4
5 @NgModule({
6     declarations: [
7         ServicePathsListComponent
8     ],
9     imports: [CommonModule],
10     exports: [],
11     entryComponents: [
12         ServicePathsListComponent
13     ],
14     providers: []
15 })
16 export class ServicePathsListModule {
17 }