summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/composition/deployment/deployment-graph.service.ts
blob: 7ec346c20b4baadadd53179ad749d319363a8b61 (plain)
1
2
3
4
5
6
7
8
import {Injectable} from "@angular/core";
import 'rxjs/add/observable/forkJoin';
import {CommonGraphDataService} from "../common/common-graph-data.service";
import {Module} from "../../../../models/modules/base-module";
@Injectable()
export class DeploymentGraphService extends CommonGraphDataService {
    public modules:Array<Module>;
}