UNPKG

mc-core

Version:
13 lines (8 loc) 212 B
export default ['$scope', '$http', function($scope, $http) { $http .get('/api/checks') .then(res => { console.log('health checks', res.data.data) $scope.checks = res.data.data }) }]