web / routes /users.js
Closure-RI's picture
Update routes/users.js
e7c8493 verified
raw
history blame contribute delete
220 Bytes
var express = require('express');
var router = express.Router();
// Define routes for this router
router.get('/', function(req, res, next) {
res.send('User routes');
});
// Export the router
module.exports = router;