2024-04-09 16:21:05 +05:30
|
|
|
import express from 'express';
|
|
|
|
import imagesRouter from './images';
|
2024-04-23 16:46:14 +05:30
|
|
|
import configRouter from './config';
|
2024-04-09 16:21:05 +05:30
|
|
|
|
|
|
|
const router = express.Router();
|
|
|
|
|
|
|
|
router.use('/images', imagesRouter);
|
2024-04-23 16:46:14 +05:30
|
|
|
router.use('/config', configRouter);
|
2024-04-09 16:21:05 +05:30
|
|
|
|
|
|
|
export default router;
|