mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-10 15:21:59 +08:00
* fix(route): appstore refactor to V2 * fix(route): add radar.js * fix: remove legacy url.resolve
42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
module.exports = {
|
|
'apple.com': {
|
|
_name: 'Apple',
|
|
apps: [
|
|
{
|
|
title: '应用更新',
|
|
docs: 'https://docs.rsshub.app/program-update.html#app-store-mac-app-store',
|
|
source: ['/:contry/app/:id'],
|
|
target: '/appstore/update/:country/:id',
|
|
},
|
|
{
|
|
title: '价格更新',
|
|
docs: 'https://docs.rsshub.app/program-update.html#app-store-mac-app-store',
|
|
source: ['/'],
|
|
target: '/appstore/price/:country/:type/:id',
|
|
},
|
|
],
|
|
},
|
|
'app.so': {
|
|
_name: '鲜面连线',
|
|
'.': [
|
|
{
|
|
title: '限免应用',
|
|
docs: 'https://docs.rsshub.app/program-update.html#app-store-mac-app-store',
|
|
source: ['/xianmian'],
|
|
target: '/appstore/xianmian',
|
|
},
|
|
],
|
|
},
|
|
'gofans.cn': {
|
|
_name: 'GoFans',
|
|
'.': [
|
|
{
|
|
title: '最新限免',
|
|
docs: 'https://docs.rsshub.app/program-update.html#app-store-mac-app-store',
|
|
source: ['/'],
|
|
target: '/appstore/gofans',
|
|
},
|
|
],
|
|
},
|
|
};
|