Files
RSSHub/lib/v2/zyshow/radar.js
Ethan Shen 50f1946e75 fix(route): 综艺秀 (#9898)
* fix(route): 综艺秀

* fix: remove old radar rules
2022-06-05 21:28:45 +08:00

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()}`,
},
],
},
};