reorganization of source code

This commit is contained in:
azivner
2017-10-15 19:47:05 -04:00
parent 38b95a743b
commit 0c823a2927
315 changed files with 99 additions and 530 deletions

9
routes/index.js Normal file
View File

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