moved /app into just /

This commit is contained in:
azivner
2017-10-15 19:10:36 -04:00
parent d401866fbe
commit 38b95a743b
5 changed files with 274 additions and 286 deletions

9
node/routes/index.js Normal file
View File

@@ -0,0 +1,9 @@
const express = require('express');
const router = express.Router();
const auth = require('../auth');
router.get('', auth.checkAuth, (req, res, next) => {
res.render('index', {});
});
module.exports = router;