mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-02 10:08:02 +08:00
* feat: add tokeninsight's bulletin * feat: add tokeninsight's report and blog * 🔧 Add Limit for tokeninsight * refactor: migrate to v2 * fix: maintainer path Co-authored-by: TonyRL <TonyRL@users.noreply.github.com>
26 lines
819 B
JavaScript
26 lines
819 B
JavaScript
module.exports = {
|
|
'tokeninsight.com': {
|
|
_name: 'TokenInsight',
|
|
'.': [
|
|
{
|
|
title: '博客',
|
|
docs: 'https://docs.rsshub.app/new-media.html#tokeninsight',
|
|
source: ['/:lang/blogs'],
|
|
target: '/tokeninsight/blog/:lang',
|
|
},
|
|
{
|
|
title: '快讯',
|
|
docs: 'https://docs.rsshub.app/new-media.html#tokeninsight',
|
|
source: ['/:lang/latest'],
|
|
target: '/tokeninsight/bulletin/:lang',
|
|
},
|
|
{
|
|
title: '报告',
|
|
docs: 'https://docs.rsshub.app/new-media.html#tokeninsight',
|
|
source: ['/:lang/report'],
|
|
target: '/tokeninsight/report/:lang',
|
|
},
|
|
],
|
|
},
|
|
};
|