traefik/static/app/core/health.resource.js

11 lines
203 B
JavaScript
Raw Normal View History

(function () {
'use strict';
angular
.module('traefik.core.health', ['ngResource'])
.factory('Health', ['$resource', function ($resource) {
return $resource('/health');
}]);
})();