summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/composition/deployment/deployment-graph.module.ts
blob: 91f97db8c35b84f1e8a8a0479d41944ea878aced (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import {NgModule} from "@angular/core";
import {CommonModule} from "@angular/common";
import {DeploymentGraphComponent} from "./deployment-graph.component";

@NgModule({
    declarations: [DeploymentGraphComponent],
    imports: [CommonModule],
    exports: [DeploymentGraphComponent],
    entryComponents: [DeploymentGraphComponent],
    providers: [

    ]
})
export class DeploymentGraphModule {
}