mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 04:11:26 +08:00
* fix(route): 每经网分类 * refactor: migrate to v2 Co-authored-by: TonyRL <TonyRL@users.noreply.github.com>
5 lines
127 B
JavaScript
5 lines
127 B
JavaScript
module.exports = (router) => {
|
|
router.get('/daily', require('./article'));
|
|
router.get('/:id?', require('./index'));
|
|
};
|