mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 20:27:52 +08:00
* update zju/grs in university * refactor: migrate to v2 * fix: add radar * fix: not working routes * fix: add migration note * docs: remove N/A types from physics table * fix(radar): migrate old rules
9 lines
350 B
JavaScript
9 lines
350 B
JavaScript
module.exports = (router) => {
|
|
router.get('/career/:type', require('./career'));
|
|
router.get('/cst/custom/:id', require('./cst/custom'));
|
|
router.get('/cst/:type', require('./cst'));
|
|
router.get('/grs/:type', require('./grs'));
|
|
router.get('/list/:type', require('./list'));
|
|
router.get('/physics/:type', require('./physics'));
|
|
};
|