seems to work

This commit is contained in:
William Mantly
2016-01-16 16:14:13 -05:00
commit b58deaaa86
19 changed files with 568 additions and 0 deletions

9
routes/users.js Normal file
View File

@ -0,0 +1,9 @@
var express = require('express');
var router = express.Router();
/* GET users listing. */
router.get('/', function(req, res, next) {
res.send('respond with a resource');
});
module.exports = router;