mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-10 07:12:51 +08:00
* fix(route): hk01 get fulltext and refactor to V2 * Update lib/v2/hk01/channel.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/v2/hk01/issue.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * fix: teaser pubDate
8 lines
280 B
JavaScript
8 lines
280 B
JavaScript
module.exports = function (router) {
|
|
router.get('/channel/:id', require('./channel'));
|
|
router.get('/hot', require('./hot'));
|
|
router.get('/issue/:id', require('./issue'));
|
|
router.get('/tag/:id', require('./tag'));
|
|
router.get('/zone/:id', require('./zone'));
|
|
};
|