blob: 210606af923ee727e1d2f53f3a92a775f67d4246 [file] [log] [blame]
(function () {
'use strict';
angular.module('xos.diagnostic', [
'ngResource',
'ngCookies',
'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');
});
})();