Matteo Scandolo | c46a82d | 2017-03-24 18:37:18 -0700 | [diff] [blame^] | 1 | /// <reference path="../typings/index.d.ts" /> |
| 2 | import * as angular from 'angular'; |
| 3 | |
| 4 | import 'angular-ui-router'; |
| 5 | import 'angular-resource'; |
| 6 | import 'angular-cookies'; |
| 7 | import {RCordGraphReducer, IRCordGraphReducer} from './app/services/graph.extension'; |
| 8 | |
| 9 | angular.module('xos-rcord-gui-extension', [ |
| 10 | 'ui.router', |
| 11 | 'app' |
| 12 | ]) |
| 13 | .service('RCordGraphReducer', RCordGraphReducer) |
| 14 | .run(function($log: ng.ILogService, RCordGraphReducer: IRCordGraphReducer) { |
| 15 | $log.info('[xos-rcord-graph-gui-extension] App is running'); |
| 16 | RCordGraphReducer.setup(); |
| 17 | }); |