mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-01 09:38:04 +08:00
* feat(route): add UNTAG分类 & 专题 * fix: add maintainer * fix: update route * fix: update route path ---------
5 lines
148 B
JavaScript
5 lines
148 B
JavaScript
module.exports = function (router) {
|
|
router.get('/topic/:topic?', require('./topic'));
|
|
router.get('/:category?', require('./category'));
|
|
};
|