This commit is contained in:
Raphix
2023-02-02 14:36:36 +01:00
parent 9a2868230e
commit 6c861a6d78
7 changed files with 174 additions and 1 deletions

9
routes/index.js Normal file
View File

@ -0,0 +1,9 @@
var express = require('express');
var router = express.Router();
/* GET home page. */
router.get('/', function(req, res, next) {
res.render('index', { title: 'Express' });
});
module.exports = router;