Files
RSSHub/lib/v2/cls/router.js
Hengyu dae0b254eb feat(route): add cls hot articles 添加财联社热门文章排行榜 (#12044)
* feat/add cls hot articles

* rename router to one word

* Apply suggestions from code review

* import crypto

* add heading 3

* refactor: migrate to v2

---------
2023-03-07 04:05:48 +08:00

6 lines
198 B
JavaScript

module.exports = (router) => {
router.get('/depth/:category?', require('./depth'));
router.get('/hot', require('./hot'));
router.get('/telegraph/:category?', require('./telegraph'));
};