Files
RSSHub/lib/v2/pku/router.js
MisLink df6f4caf8b feat(route): add 北京大学国家发展研究院 - 观点 (#9804)
* feat(route): add 北京大学国家发展研究院 - 观点

Signed-off-by: MisLink <gjq.uoiai@outlook.com>

* Fix https issue

Signed-off-by: MisLink <gjq.uoiai@outlook.com>

* fetch full text from wechat-mp and pku news

Signed-off-by: MisLink <gjq.uoiai@outlook.com>

* Fix ci

Signed-off-by: MisLink <gjq.uoiai@outlook.com>

* refactor: sort new route
2022-05-27 19:12:04 +08:00

11 lines
470 B
JavaScript

module.exports = function (router) {
router.get('/admission/sszs', require('./pkuyjs'));
router.get('/bbs/hot', require('./bbs/hot'));
router.get('/cls/lecture', require('./cls/lecture'));
router.get('/eecs/:type?', require('./eecs'));
router.get('/hr/:category?', require('./hr'));
router.get('/nsd/gd', require('./nsd'));
router.get('/rccp/mzyt', require('./rccp/mzyt'));
router.get('/scc/recruit/:type?', require('./scc/recruit'));
};