mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 04:11:26 +08:00
18 lines
506 B
JavaScript
18 lines
506 B
JavaScript
module.exports = {
|
|
'zyshow.net': {
|
|
_name: '综艺秀',
|
|
'.': [
|
|
{
|
|
title: '综艺',
|
|
docs: 'https://docs.rsshub.app/multimedia.html#zong-yi-xiu-zong-yi',
|
|
source: ['/:region/:id', '/:id', '/'],
|
|
target: (params, url) =>
|
|
`/zyshow/${new URL(url)
|
|
.toString()
|
|
.split(/zyshow\.net/)
|
|
.pop()}`,
|
|
},
|
|
],
|
|
},
|
|
};
|