[CORD-814] Preparatory work to display service graph

Change-Id: I8e06cb92f017ce599258451800293b991540f72b
diff --git a/src/app/service-graph/index.ts b/src/app/service-graph/index.ts
new file mode 100644
index 0000000..5c861fd
--- /dev/null
+++ b/src/app/service-graph/index.ts
@@ -0,0 +1,11 @@
+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`);
+  });