mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-08 14:07:54 +08:00
17 lines
460 B
JavaScript
17 lines
460 B
JavaScript
module.exports = {
|
|
'ajmide.com': {
|
|
_name: '阿基米德FM',
|
|
m: [
|
|
{
|
|
title: '播客',
|
|
docs: 'https://docs.rsshub.app/multimedia.html#a-ji-mi-de-fm-bo-ke',
|
|
source: ['/m/brand'],
|
|
target: (_, url) => {
|
|
const id = new URL(url).searchParams.get('id');
|
|
return `/ajmide/${id}`;
|
|
},
|
|
},
|
|
],
|
|
},
|
|
};
|