mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-13 00:35:57 +08:00
* feat(route): add Bandcamp Weekly * refactor: migrate to v2 * docs: fix route tag Co-authored-by: TonyRL <TonyRL@users.noreply.github.com>
26 lines
792 B
JavaScript
26 lines
792 B
JavaScript
module.exports = {
|
|
'bandcamp.com': {
|
|
_name: 'Bandcamp',
|
|
'.': [
|
|
{
|
|
title: 'Tag',
|
|
docs: 'https://docs.rsshub.app/multimedia.html#bandcamp',
|
|
source: ['/tag/:tag'],
|
|
target: '/bandcamp/tag/:tag',
|
|
},
|
|
{
|
|
title: 'Upcoming Live Streams',
|
|
docs: 'https://docs.rsshub.app/multimedia.html#bandcamp-upcoming-live-streams',
|
|
source: ['/live_schedule'],
|
|
target: '/bandcamp/live',
|
|
},
|
|
{
|
|
title: 'Weekly',
|
|
docs: 'https://docs.rsshub.app/multimedia.html#bandcamp',
|
|
source: ['/'],
|
|
target: '/bandcamp/weekly',
|
|
},
|
|
],
|
|
},
|
|
};
|