mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-12 08:10:32 +08:00
* fix: yxdown missing cookies * refactor: migrate to v2 * fix: cookie parsing * docs: fix attr
20 lines
606 B
JavaScript
20 lines
606 B
JavaScript
module.exports = {
|
|
'yxdown.com': {
|
|
_name: '游讯网',
|
|
'.': [
|
|
{
|
|
title: '资讯',
|
|
docs: 'https://docs.rsshub.app/game.html#you-xun-wang',
|
|
source: ['/news/:category', '/news'],
|
|
target: (params) => `/yxdown/news${params.category ? `/${params.category}` : ''}`,
|
|
},
|
|
{
|
|
title: '精彩推荐',
|
|
docs: 'https://docs.rsshub.app/game.html#you-xun-wang',
|
|
source: ['/'],
|
|
target: '/yxdown/recommend',
|
|
},
|
|
],
|
|
},
|
|
};
|