1
0
Fork 0
traefik/webui/src/app/core/health.resource.js
Fernandez Ludovic b7a71edfcb feat: new Web UI build system
- use generator-gulp-angular by @swiip
- remove old static file
2016-01-20 20:06:07 +01:00

13 lines
242 B
JavaScript

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