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