mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
24 lines
666 B
TypeScript
24 lines
666 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';
|
|
import pageSettingsRoutes from './pageSettings.js';
|
|
|
|
const router = Router();
|
|
|
|
const sharedRoutes = [
|
|
{ path: '/authenticate', route: authenticateRoutes },
|
|
{ path: '/boltz', route: boltzRoutes },
|
|
{ path: '/loop', route: loopRoutes },
|
|
{ path: '/conf', route: RTLConfRoutes },
|
|
{ path: '/pagesettings', route: pageSettingsRoutes }
|
|
];
|
|
|
|
sharedRoutes.forEach((route) => {
|
|
router.use(route.path, route.route);
|
|
});
|
|
|
|
export default router;
|