Files
RSSHub/lib/v2/hellogithub/router.js
mokevip8 e4c6dabf70 feat(route): 增加HelloGithub的RSS订阅 (#8879)
* 增加HelloGithub的RSS订阅

* refactor: migrate to v2

Co-authored-by: TonyRL <TonyRL@users.noreply.github.com>
2022-03-04 13:21:50 +08:00

6 lines
187 B
JavaScript

module.exports = (router) => {
router.get('/article', require('./article'));
router.get('/month', require('./month'));
router.get('/ranking/:type?', require('./ranking'));
};