blob: 5c861fd6ea3c45db5b7583b745a5c273f9e29fae [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';
4export const xosServiceGraph = 'xosServiceGraph';
5
6angular
7 .module(xosServiceGraph, [xosDataSources, xosCore])
8 .service('XosServiceGraphStore', XosServiceGraphStore)
9 .run(($log: ng.ILogService, XosServiceGraphStore) => {
10 $log.info(`[${xosServiceGraph}] Module Setup`);
11 });