blob: 73cd3d92a24adbaf3cefcf824d73406ed5d7215e [file] [log] [blame]
(function () {
'use strict';
angular.module('xos.diagnostic', [
'ngResource',
'ngCookies',
'ngLodash',
'ngAnimate',
'ui.router',
'xos.helpers'
])
.config(($stateProvider) => {
$stateProvider
.state('home', {
url: '/',
template: '<diagnostic-container></diagnostic-container>'
});
})
.config(function($httpProvider){
$httpProvider.interceptors.push('NoHyperlinks');
})
.run(($log) => {
$log.info('Diagnostic Started');
});
})();