Files
RSSHub/lib/v2/zju/router.js
尹傲雄 1e11388c90 fix(route): update zju/grs (#9551)
* 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
2022-04-18 02:04:53 +08:00

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'));
};