mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-06 05:03:44 +08:00
* feat(route): add 软餐 * update lib/v2/ruancan/radar.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * update lib/v2/ruancan/radar.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * update lib/v2/ruancan/radar.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> Co-authored-by: Tony <TonyRL@users.noreply.github.com>
26 lines
781 B
JavaScript
26 lines
781 B
JavaScript
module.exports = {
|
|
'ruancan.com': {
|
|
_name: '软餐',
|
|
'.': [
|
|
{
|
|
title: '首页',
|
|
docs: 'https://docs.rsshub.app/new-media.html#ruan-can-shou-ye',
|
|
source: ['/'],
|
|
target: '/ruancan',
|
|
},
|
|
{
|
|
title: '分类',
|
|
docs: 'https://docs.rsshub.app/new-media.html#ruan-can-fen-lei',
|
|
source: ['/sort/:sort', '/'],
|
|
target: '/ruancan/sort/:sort',
|
|
},
|
|
{
|
|
title: '标签',
|
|
docs: 'https://docs.rsshub.app/new-media.html#ruan-can-biao-qian',
|
|
source: ['/tag/:tag', '/'],
|
|
target: '/ruancan/tag/:tag',
|
|
},
|
|
],
|
|
},
|
|
};
|