first commit

This commit is contained in:
Mojtaba Khorshidkolah
2026-03-05 09:39:35 +03:30
commit a9bd7e890a
9 changed files with 2195 additions and 0 deletions

9
config/router.js Normal file
View File

@@ -0,0 +1,9 @@
const ControllerHandler =require('./controller')
const express = require('express')
const router = express.Router();
router.get('/get',ControllerHandler.getData)
module.exports = router;