UNPKG
scriptbox
Version:
latest (0.0.3-patch5)
0.0.3
0.0.3-patch5
0.0.3-patch4
0.0.3-patch3
0.0.3-patch2
0.0.3-patch1
0.0.2-b
0.0.1-b
0.0.1-a
Script box is a full VAS application
github.com/badlee/scriptbox
badlee/scriptbox
scriptbox
/
routes
/
healthz.js
7 lines
(5 loc)
•
112 B
JavaScript
View Raw
1
2
3
4
5
6
7
module
.
exports
=
function
(
server
){ server.
get
(
"/healthz"
,
function
(
req,res
){ res.
send
(
"OK"
); }); }