Files
RSSHub/lib/v2/bjfu/router.js
Elliott 7dd591ca82 feat(route): add 信息学院路由 (#7777)
* feat:add 信息学院路由

* refactor: migrate to v2

Co-authored-by: TonyRL <TonyRL@users.noreply.github.com>
2022-02-22 22:48:59 +08:00

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