Files
RSSHub/lib/v2/utgd/router.js
Ethan Shen beb308f9a0 feat(route): add UNTAG分类 & 专题 (#12576)
* feat(route): add UNTAG分类 & 专题

* fix: add maintainer

* fix: update route

* fix: update route path

---------
2023-05-31 21:16:44 +08:00

5 lines
148 B
JavaScript

module.exports = function (router) {
router.get('/topic/:topic?', require('./topic'));
router.get('/:category?', require('./category'));
};