mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 20:27:52 +08:00
* Gcores tagging * Gcore tags * Comfort v2 * Update router * Update router.js * refactor: use cache.tryGet
5 lines
160 B
JavaScript
5 lines
160 B
JavaScript
module.exports = function (router) {
|
|
router.get('/category/:category', require('./category'));
|
|
router.get('/tag/:tag/:category?', require('./tag'));
|
|
};
|