Initial commit

users route is incomplete
can auth using SIWE and SIWS when used with zkl-roadhog
more to come...
This commit is contained in:
2024-10-01 22:43:21 +03:00
commit a920a7d21a
12 changed files with 2207 additions and 0 deletions

9
routes/app.route.js Normal file
View File

@@ -0,0 +1,9 @@
const express = require('express');
const router = express.Router();
const authRoute = require('./auth.route.js');
const usersRoute = require('./users.route.js');
router.use('/auth', authRoute);
router.use('/users', usersRoute);
module.exports = router;