blob: ab9207b0e9b8af85837c6ec0bbea6551689ce0db [file] [log] [blame]
import {xosDataSources} from '../datasources/index';
import {XosServiceGraphStore} from './services/graph.store';
import {xosCore} from '../core/index';
import {XosCoarseTenancyGraph} from './components/coarse/coarse.component';
export const xosServiceGraph = 'xosServiceGraph';
angular
.module(xosServiceGraph, [xosDataSources, xosCore])
.service('XosServiceGraphStore', XosServiceGraphStore)
.component('xosCoarseTenancyGraph', XosCoarseTenancyGraph)
.run(($log: ng.ILogService) => {
$log.info(`[${xosServiceGraph}] Module Setup`);
});