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