mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-01 01:28:08 +08:00
* refactor: fix scut namespace * refactor: fix gzhu namespace * refactor: fix scnu namespace * refactor: fix hust namespace * refactor: fix ccnu namespace * refactor: fix sustech namespace * refactor: fix szu namespace remove `/szuyjs` since it's a duplicate of `/szu/yz/:type?` * refactor: fix tongji namespace * refactor: fix ocu namespace * refactor: fix upc namespace * refactor: fix ucas namespace * refactor: fix cas namespace * refactor: fix cau namespace * refactor: remove `/cucyjs` since `/cuc/yz` existed well before that * refactor: fix bit namespace * refactor: fix **undocumented** scau namespace * fix: typo * fix: code scan
9 lines
388 B
JavaScript
9 lines
388 B
JavaScript
module.exports = (router) => {
|
|
router.get('/jwc/news', require('./jwc/news'));
|
|
router.get('/jwc/notice/:category?', require('./jwc/notice'));
|
|
router.get('/jwc/school/:category?', require('./jwc/school'));
|
|
router.get('/scet/notice', require('./scet/notice'));
|
|
router.get('/seie/news_center', require('./seie/news_center'));
|
|
router.get('/yjs', require('./yjs'));
|
|
};
|