mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
bea5980c6f
Release 0.12.0
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;
|