1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-19 05:09:41 +02:00
codex.docs/routes/index.js
gohabereg@gmail.com 2e717f6415 Initial
2018-08-10 19:25:29 +03:00

9 lines
208 B
JavaScript

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;