UNPKG
mc-core
Version:
latest (1.0.0-alpha.1)
1.0.0-alpha.1
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Deployments made simple
github.com/space-race/mc-core
space-race/mc-core
mc-core
/
ui
/
assets
/
js
/
controllers
/
health.js
13 lines
(8 loc)
•
212 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
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 }) }]