mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-03-14 11:58:16 +01:00
22 lines
558 B
TypeScript
22 lines
558 B
TypeScript
|
import exprs from 'express';
|
||
|
const { Router } = exprs;
|
||
|
import authenticateRoutes from './authenticate.js';
|
||
|
import boltzRoutes from './boltz.js';
|
||
|
import loopRoutes from './loop.js';
|
||
|
import RTLConfRoutes from './RTLConf.js';
|
||
|
|
||
|
const router = Router();
|
||
|
|
||
|
const sharedRoutes = [
|
||
|
{ path: '/authenticate', route: authenticateRoutes },
|
||
|
{ path: '/boltz', route: boltzRoutes },
|
||
|
{ path: '/loop', route: loopRoutes },
|
||
|
{ path: '/conf', route: RTLConfRoutes }
|
||
|
];
|
||
|
|
||
|
sharedRoutes.forEach((route) => {
|
||
|
router.use(route.path, route.route);
|
||
|
});
|
||
|
|
||
|
export default router;
|