Initial express.js project structure

This commit is contained in:
2022-11-01 23:55:07 -04:00
parent 53e0a557a3
commit 3c0ebc7001
5 changed files with 50 additions and 3 deletions

4
src/routes/home.js Normal file
View File

@ -0,0 +1,4 @@
// GET - /
exports.getIndex = function (req, res) {
res.render('index.twig');
};