Permalink
Please sign in to comment.
Showing
with
13 additions
and 0 deletions.
- +1 −0 CHECKS
- +2 −0 app.js
- +10 −0 routes/check.js
| @@ -0,0 +1,10 @@ | ||
| +var express = require('express'); | ||
| +var router = express.Router(); | ||
| + | ||
| +router.get('/', function(req, res) { | ||
| + res.set('Content-Type', 'text/plain') | ||
| + .send('I am alive') | ||
| + .end(); | ||
| +}) | ||
| + | ||
| +module.exports = router; |
0 comments on commit
1ffbc6b