Files
Mojtaba Khorshidkolah a9bd7e890a first commit
2026-03-05 09:39:35 +03:30

9 lines
191 B
JavaScript

const ControllerHandler =require('./controller')
const express = require('express')
const router = express.Router();
router.get('/get',ControllerHandler.getData)
module.exports = router;