mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-09 14:40:23 +08:00
* feat:add 信息学院路由 * refactor: migrate to v2 Co-authored-by: TonyRL <TonyRL@users.noreply.github.com>
8 lines
280 B
JavaScript
8 lines
280 B
JavaScript
module.exports = (router) => {
|
|
router.get('/grs', require('./grs'));
|
|
router.get('/it/:type', require('./it/index'));
|
|
router.get('/jwc/:type', require('./jwc/index'));
|
|
router.get('/kjc', require('./kjc'));
|
|
router.get('/news/:type', require('./news/index'));
|
|
};
|