1
0
Fork 0
mirror of https://github.com/Ride-The-Lightning/RTL.git synced 2025-03-14 11:58:16 +01:00
Ride-The-Lightning-RTL/server/routes/shared/index.ts

22 lines
558 B
TypeScript
Raw Normal View History

2021-12-29 18:08:41 -05:00
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;