This website works better with JavaScript.
Explore
Help
Sign In
pelias
/
api
mirror of
https://github.com/pelias/api.git
Watch
1
Star
0
Fork
You've already forked api
0
Code
Issues
Releases
Activity
2407
Commits
67
Branches
133
Tags
4.7 MiB
Tree:
1b00b643f1
api
/
controller
/
status.js
4 lines
85 B
Raw
Normal View
History
Unescape
Escape
Add /status controller It's at the root level, and simply returns 200 with 'status: ok' as the body.
9 years ago
module
.
exports
=
function
controller
(
req
,
res
,
next
)
{
res
.
send
(
'status: ok'
)
;
}
;