UNPKG
virool-pivot
Version:
latest (0.8.42)
0.8.42
0.8.41
A web-based exploratory visualization UI for Druid.io
github.com/implydata/pivot
implydata/pivot
virool-pivot
/
build
/
server
/
routes
/
health
/
health.js
8 lines
(7 loc)
•
210 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
"use strict"
;
var
express_1 =
require
(
'express'
);
var
router = express_1.
Router
(); router.
get
(
'/'
,
function
(
req, res
) { res.
send
(
"I am healthy @ "
+
new
Date
().
toISOString
()); });
module
.
exports
= router;