You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
310 B

4 years ago
var express = require('express');
var router = express.Router();
router.get('/', (req, res, next) => {
res.render('index');
});
4 years ago
router.get('/documentation', (req, res, next) => {
res.render('documentation');
});
router.get('/faq', (req, res, next) => {
res.render('faq');
});
4 years ago
module.exports = router;