mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-10 15:21:59 +08:00
6 lines
173 B
TypeScript
6 lines
173 B
TypeScript
export default (router) => {
|
|
router.get('/topic/text/:id', './topic-text');
|
|
router.get('/topic/:id/:showUid?', './topic');
|
|
router.get('/user/:id', './user');
|
|
};
|