initialize

This commit is contained in:
Pakin 2025-08-06 16:01:57 +07:00
commit 99b6232436
24 changed files with 3872 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;