1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-31 02:59:43 +02:00
This commit is contained in:
gohabereg@gmail.com 2018-08-10 19:25:29 +03:00
commit 2e717f6415
11 changed files with 634 additions and 0 deletions

9
routes/index.js Normal file
View file

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