mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 12:21:31 +08:00
* fix(route): taptap topic review * fix: review url * refactor: use utility * docs: add back warning
26 lines
793 B
JavaScript
26 lines
793 B
JavaScript
module.exports = {
|
|
'taptap.com': {
|
|
_name: 'TapTap',
|
|
'.': [
|
|
{
|
|
title: '游戏论坛',
|
|
docs: 'https://docs.rsshub.app/game.html#taptap',
|
|
source: ['/app/:id/topic', '/app/:id'],
|
|
target: '/taptap/topic/:id',
|
|
},
|
|
{
|
|
title: '游戏更新',
|
|
docs: 'https://docs.rsshub.app/game.html#taptap',
|
|
source: ['/app/:id'],
|
|
target: '/taptap/changelog/:id',
|
|
},
|
|
{
|
|
title: '游戏评价',
|
|
docs: 'https://docs.rsshub.app/game.html#taptap',
|
|
source: ['/app/:id/review', '/app/:id'],
|
|
target: '/taptap/review/:id',
|
|
},
|
|
],
|
|
},
|
|
};
|