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
16 lines
310 B
var express = require('express');
|
|
var router = express.Router();
|
|
|
|
router.get('/', (req, res, next) => {
|
|
res.render('index');
|
|
});
|
|
|
|
router.get('/documentation', (req, res, next) => {
|
|
res.render('documentation');
|
|
});
|
|
|
|
router.get('/faq', (req, res, next) => {
|
|
res.render('faq');
|
|
});
|
|
|
|
module.exports = router;
|