mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-04 19:59:54 +08:00
18 lines
425 B
JavaScript
18 lines
425 B
JavaScript
const dirname = __dirname + '/v2';
|
|
|
|
// 遍历整个 routes 文件夹,收集模块路由 router.js
|
|
const RouterPath = require('require-all')({
|
|
dirname,
|
|
filter: /router\.js$/,
|
|
});
|
|
|
|
const routes = {};
|
|
|
|
// 将收集到的自定义模块路由进行合并
|
|
for (const dir in RouterPath) {
|
|
const project = RouterPath[dir]['router.js']; // Do not merge other file
|
|
routes[dir] = project;
|
|
}
|
|
|
|
module.exports = routes;
|