Matteo Scandolo | a62adbc | 2017-03-02 15:37:34 -0800 | [diff] [blame^] | 1 | import {xosDataSources} from '../datasources/index'; |
2 | import {XosServiceGraphStore} from './services/graph.store'; | ||||
3 | import {xosCore} from '../core/index'; | ||||
4 | export const xosServiceGraph = 'xosServiceGraph'; | ||||
5 | |||||
6 | angular | ||||
7 | .module(xosServiceGraph, [xosDataSources, xosCore]) | ||||
8 | .service('XosServiceGraphStore', XosServiceGraphStore) | ||||
9 | .run(($log: ng.ILogService, XosServiceGraphStore) => { | ||||
10 | $log.info(`[${xosServiceGraph}] Module Setup`); | ||||
11 | }); |