mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-01 17:48:15 +08:00
* feat/add cls hot articles * rename router to one word * Apply suggestions from code review * import crypto * add heading 3 * refactor: migrate to v2 ---------
6 lines
198 B
JavaScript
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'));
|
|
};
|