Files
RSSHub/lib/v2/eagle/router.js
Fatpandac cff988ad9f feat(route): add Eagle's blog and refactor to V2 (#9546)
* feat(route): add Eagle's blog and refactor to V2

* fix: remove deprecated eagle radar rules

* fix: changelog date and guid

* fix(route): add language option
2022-04-17 21:24:17 +08:00

5 lines
167 B
JavaScript

module.exports = function (router) {
router.get('/blog/:cate?/:language?', require('./blog'));
router.get('/changelog/:language?', require('./changelog'));
};