mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-11 15:47:48 +08:00
* feat(route): tju news * chore: update Co-authored-by: Tony <TonyRL@users.noreply.github.com> * chore: update date format Co-authored-by: Tony <TonyRL@users.noreply.github.com> * chore: update Co-authored-by: Tony <TonyRL@users.noreply.github.com> * doc: update
7 lines
238 B
JavaScript
7 lines
238 B
JavaScript
module.exports = function (router) {
|
|
router.get('/cic/:type?', require('./cic'));
|
|
router.get('/news/:type?', require('./news'));
|
|
router.get('/oaa/:type?', require('./oaa'));
|
|
router.get('/yzb/:type?', require('./yzb'));
|
|
};
|