mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-02 01:58:11 +08:00
* add 西南石油大学财金学院和信息学院 * add 西南石油大学财经学院和信息学院 * Merge branch 'master' of github.com:RiverTwilight/RSSHub * feat: 增加西南石油大学信息学院和财经学院 * lint: remove console-log * lint: simplify got usage, and so on * lint: parenthesize the returned value * lint: remove useless symbol * docs: fixes
9 lines
330 B
JavaScript
9 lines
330 B
JavaScript
module.exports = function (router) {
|
|
router.get('/bgw/:code', require('./bgw'));
|
|
router.get('/cjxy/:code', require('./cjxy'));
|
|
router.get('/dean/:code', require('./dean'));
|
|
router.get('/dxy/:code', require('./dxy'));
|
|
router.get('/is/:code', require('./is'));
|
|
router.get('/scs/:code', require('./scs'));
|
|
};
|