blob: ab9207b0e9b8af85837c6ec0bbea6551689ce0db [file] [log] [blame]
Matteo Scandoloa62adbc2017-03-02 15:37:34 -08001import {xosDataSources} from '../datasources/index';
2import {XosServiceGraphStore} from './services/graph.store';
3import {xosCore} from '../core/index';
Matteo Scandolo968e7f22017-03-03 11:49:18 -08004import {XosCoarseTenancyGraph} from './components/coarse/coarse.component';
Matteo Scandoloa62adbc2017-03-02 15:37:34 -08005export const xosServiceGraph = 'xosServiceGraph';
6
7angular
8 .module(xosServiceGraph, [xosDataSources, xosCore])
9 .service('XosServiceGraphStore', XosServiceGraphStore)
Matteo Scandolo968e7f22017-03-03 11:49:18 -080010 .component('xosCoarseTenancyGraph', XosCoarseTenancyGraph)
11 .run(($log: ng.ILogService) => {
Matteo Scandoloa62adbc2017-03-02 15:37:34 -080012 $log.info(`[${xosServiceGraph}] Module Setup`);
13 });