mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 12:21:31 +08:00
* fix(route): add abstract * fix(route): add an optional parameter to control show fulltext or overview
7 lines
186 B
JavaScript
7 lines
186 B
JavaScript
module.exports = (router) => {
|
|
// deprecated
|
|
router.get('/category/:category?/:overview?', require('./index'));
|
|
|
|
router.get('/:category?/:overview?', require('./index'));
|
|
};
|