constexpress=require('express');constuserRoutes=require('./user.route');constauthRoutes=require('./auth.route');constrouter=express.Router();// eslint-disable-line new-cap/** GET /health-check - Check service health */router.get('/health-check',(req,res)=>res.send('OK'));router.use('/auth',authRoutes);router.use('/user',userRoutes);module.exports=router;