mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-11 07:40:26 +08:00
* 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
11 lines
470 B
JavaScript
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'));
|
|
};
|