Files
RSSHub/lib/v2/gcores/router.js
Kudryavka f6b1d4c49d feat(route): add 机核网专题文章 (#12661)
* feat: add gcores collections

* feat: add maintainer

* feat: add radar config

* chore: update docs

* chore: change search url

* feat: use api to collect item

* chore: limit route

* feat: 手动解析blocks

* fix: add default case
2023-06-27 20:51:15 +08:00

7 lines
287 B
JavaScript

module.exports = function (router) {
router.get('/category/:category', require('./category'));
router.get('/collections/:collection', require('./collection'));
router.get('/radios/:category?', require('./radio'));
router.get('/tag/:tag/:category?', require('./tag'));
};