mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 20:27:52 +08:00
Co-authored-by: Tony <TonyRL@users.noreply.github.com> Co-authored-by: chen <2782772457@qq.com>
6 lines
203 B
JavaScript
6 lines
203 B
JavaScript
module.exports = function (router) {
|
|
router.get('/index/:category?', require('./index'));
|
|
router.get('/jwc/:category?', require('./jwc'));
|
|
router.get('/rsc/:category?', require('./rsc'));
|
|
};
|