mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-04 19:59:54 +08:00
6 lines
197 B
JavaScript
6 lines
197 B
JavaScript
module.exports = function (router) {
|
|
router.get('/chapter/:id', require('./chapter'));
|
|
router.get('/volume/:id', require('./volume'));
|
|
router.get('/:category?', require('./index'));
|
|
};
|