// fmon version 2 - (Mains Frequency Monitoring API) var express = require('express'); var router = express.Router(); var jwt = require('jwt-simple'); var path = require('path'); // Fall back, display some info router.get('/gaben', function (req, res) { res.status(200); res.type('.html'); res.send('
'); }); // Fall back, display some info router.get('/onvoldoende', function (req, res) { res.status(200); res.type('.html'); res.send(''); }); // Fall back, display some info router.get('/kok', function (req, res) { res.status(200); res.type('.html'); res.send(''); }); // Fall back, display some info router.get('/', function (req, res) { res.status(200); res.type('.html'); res.send('
');
});
module.exports = router;