mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-02 01:58:11 +08:00
9 lines
490 B
JavaScript
9 lines
490 B
JavaScript
module.exports = (router) => {
|
|
router.get('/cloud/column/:id?/:tag?', require('./cloud/column'));
|
|
router.get('/news/author/:mid', require('./news/author'));
|
|
router.get('/news/coronavirus/data/:province?/:city?', require('./news/coronavirus/data'));
|
|
router.get('/news/coronavirus/total', require('./news/coronavirus/total'));
|
|
router.get('/pvp/newsindex/:type', require('./pvp/newsindex'));
|
|
router.get('/qq/sdk/changelog/:platform', require('./qq/sdk/changelog'));
|
|
};
|