mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-10 23:34:38 +08:00
28 lines
880 B
JavaScript
28 lines
880 B
JavaScript
module.exports = {
|
|
'douyu.com': {
|
|
_name: '斗鱼',
|
|
www: [
|
|
{
|
|
title: '直播间开播',
|
|
docs: 'https://docs.rsshub.app/live.html#dou-yu-zhi-bo-zhi-bo-jian-kai-bo',
|
|
source: ['/:id', '/'],
|
|
target: '/douyu/room/:id',
|
|
},
|
|
],
|
|
yuba: [
|
|
{
|
|
title: '鱼吧帖子',
|
|
docs: 'https://docs.rsshub.app/bbs.html#dou-yu-yu-ba-tie-zi',
|
|
source: ['/group/:id', '/group/newself/:id', '/group/newall/:id', '/'],
|
|
target: '/douyu/group/:id',
|
|
},
|
|
{
|
|
title: '鱼吧跟帖',
|
|
docs: 'https://docs.rsshub.app/bbs.html#dou-yu-yu-ba-gen-tie',
|
|
source: ['/p/:id', '/'],
|
|
target: '/douyu/post/:id',
|
|
},
|
|
],
|
|
},
|
|
};
|