mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-03 02:28:23 +08:00
* feat: 增加安全客获取全文 * fix: 不需要控制台输出 * fix: const single * fix: 不分状态获取全文 现在仅在添加了 `fulltext` 或 `quanwen` 时才获取全文 * docs: 添加安全客获取全文参数说明 * docs: 删除重复的内容
5 lines
150 B
JavaScript
5 lines
150 B
JavaScript
module.exports = (router) => {
|
|
// router.get('/vul', require('./vul')); // 404
|
|
router.get('/:category/:fulltext?', require('./category'));
|
|
};
|