mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-01 17:48:15 +08:00
* 增加HelloGithub的RSS订阅 * refactor: migrate to v2 Co-authored-by: TonyRL <TonyRL@users.noreply.github.com>
6 lines
187 B
JavaScript
6 lines
187 B
JavaScript
module.exports = (router) => {
|
|
router.get('/article', require('./article'));
|
|
router.get('/month', require('./month'));
|
|
router.get('/ranking/:type?', require('./ranking'));
|
|
};
|