mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-01 17:48:15 +08:00
14 lines
401 B
JavaScript
14 lines
401 B
JavaScript
module.exports = {
|
|
'mysql.com': {
|
|
_name: 'MySQL',
|
|
dev: [
|
|
{
|
|
title: 'Release Notes',
|
|
docs: 'https://docs.rsshub.app/routes/programming#mysql-release-notes',
|
|
source: ['/'],
|
|
target: (params, url) => `/mysql/release/${new URL(url).toString().match(/\/mysql\/(.*?)\//)[1]}`,
|
|
},
|
|
],
|
|
},
|
|
};
|