mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-01 09:38:04 +08:00
* feat: add gcores collections * feat: add maintainer * feat: add radar config * chore: update docs * chore: change search url * feat: use api to collect item * chore: limit route * feat: 手动解析blocks * fix: add default case
7 lines
287 B
JavaScript
7 lines
287 B
JavaScript
module.exports = function (router) {
|
|
router.get('/category/:category', require('./category'));
|
|
router.get('/collections/:collection', require('./collection'));
|
|
router.get('/radios/:category?', require('./radio'));
|
|
router.get('/tag/:tag/:category?', require('./tag'));
|
|
};
|