17 lines
381 B
JavaScript
17 lines
381 B
JavaScript
|
(function () {
|
||
|
'use strict';
|
||
|
|
||
|
angular.module('traefik.section.health', ['traefik.core.health'])
|
||
|
.config(['$stateProvider', function ($stateProvider) {
|
||
|
|
||
|
$stateProvider.state('health', {
|
||
|
url: '/health',
|
||
|
templateUrl: 'app/sections/health/health.html',
|
||
|
controller: 'HealthController',
|
||
|
controllerAs: 'healthCtrl'
|
||
|
});
|
||
|
|
||
|
}]);
|
||
|
|
||
|
})();
|