1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-29 10:09:42 +02:00
This commit is contained in:
gohabereg@gmail.com 2018-08-10 19:25:29 +03:00
commit 2e717f6415
11 changed files with 634 additions and 0 deletions

9
routes/users.js Normal file
View file

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