Files
RSSHub/lib/v2/gcores/radar.js
StevenRCE0 6a4b939509 feat(route): 机核网添加分类标签和标签路由 (#9239)
* Gcores tagging

* Gcore tags

* Comfort v2

* Update router

* Update router.js

* refactor: use cache.tryGet
2022-03-06 20:06:37 +08:00

20 lines
584 B
JavaScript

module.exports = {
'gcores.com': {
_name: '机核网',
'.': [
{
title: '分类',
docs: 'https://docs.rsshub.app/new-media.html#ji-he-wang-fen-lei',
source: ['/:category'],
target: '/gcores/category/:category',
},
{
title: '标签',
docs: 'https://docs.rsshub.app/new-media.html#ji-he-wang-biao-qian',
source: ['/categories/:tag', '/'],
target: '/gcores/tag/:tag',
},
],
},
};