mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-09-19 09:52:21 +08:00
deploy: 5d6338ee34
This commit is contained in:
@@ -163,6 +163,12 @@
|
||||
"DIYgod",
|
||||
"DFobain"
|
||||
],
|
||||
"/forwardfuture/daily": [
|
||||
"ovo-Tim"
|
||||
],
|
||||
"/forwardfuture/originals": [
|
||||
"ovo-Tim"
|
||||
],
|
||||
"/freebuf/articles/:type": [
|
||||
"trganda"
|
||||
],
|
||||
|
||||
@@ -245,6 +245,17 @@
|
||||
docs:"https://docs.rsshub.app/routes/social-media",
|
||||
source:[ "/profile/:uid" ],
|
||||
target:"/follow/profile/:uid" } ] },
|
||||
"forwardfuture.com":{ _name:"Forward Future",
|
||||
".":[ { title:"Daily Newsletter",
|
||||
docs:"https://docs.rsshub.app/routes/other",
|
||||
source:[ "/newsletter/daily",
|
||||
"/" ],
|
||||
target:"/forwardfuture/daily" },
|
||||
{ title:"Originals",
|
||||
docs:"https://docs.rsshub.app/routes/other",
|
||||
source:[ "/originals",
|
||||
"/" ],
|
||||
target:"/forwardfuture/originals" } ] },
|
||||
"freebuf.com":{ _name:"FreeBuf",
|
||||
".":[ { title:"文章",
|
||||
docs:"https://docs.rsshub.app/routes/blog",
|
||||
|
||||
@@ -594,6 +594,29 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"forwardfuture.com": {
|
||||
"_name": "Forward Future",
|
||||
".": [
|
||||
{
|
||||
"title": "Daily Newsletter",
|
||||
"docs": "https://docs.rsshub.app/routes/other",
|
||||
"source": [
|
||||
"/newsletter/daily",
|
||||
"/"
|
||||
],
|
||||
"target": "/forwardfuture/daily"
|
||||
},
|
||||
{
|
||||
"title": "Originals",
|
||||
"docs": "https://docs.rsshub.app/routes/other",
|
||||
"source": [
|
||||
"/originals",
|
||||
"/"
|
||||
],
|
||||
"target": "/forwardfuture/originals"
|
||||
}
|
||||
]
|
||||
},
|
||||
"freebuf.com": {
|
||||
"_name": "FreeBuf",
|
||||
".": [
|
||||
|
||||
@@ -1037,6 +1037,8 @@ export type RoutePath =
|
||||
| `/forklog/news`
|
||||
| `/fortnite/news/:options?`
|
||||
| `/fortunechina/:category?`
|
||||
| `/forwardfuture/daily`
|
||||
| `/forwardfuture/originals`
|
||||
| `/fosshub/:id`
|
||||
| `/free/`
|
||||
| `/freebuf/articles/:type`
|
||||
|
||||
@@ -2294,6 +2294,58 @@ export default {
|
||||
"url": "app.follow.is",
|
||||
"lang": "en"
|
||||
},
|
||||
"forwardfuture": {
|
||||
"routes": {
|
||||
"/daily": {
|
||||
"name": "Daily Newsletter",
|
||||
"categories": [
|
||||
"other"
|
||||
],
|
||||
"path": "/daily",
|
||||
"example": "/forwardfuture/daily",
|
||||
"radar": [
|
||||
{
|
||||
"source": [
|
||||
"forwardfuture.com/newsletter/daily",
|
||||
"forwardfuture.com/"
|
||||
]
|
||||
}
|
||||
],
|
||||
"maintainers": [
|
||||
"ovo-Tim"
|
||||
],
|
||||
"description": "Daily AI newsletter from Forward Future.",
|
||||
"location": "daily.ts",
|
||||
"module": () => import('@/routes/forwardfuture/daily.ts')
|
||||
},
|
||||
"/originals": {
|
||||
"name": "Originals",
|
||||
"categories": [
|
||||
"other"
|
||||
],
|
||||
"path": "/originals",
|
||||
"example": "/forwardfuture/originals",
|
||||
"radar": [
|
||||
{
|
||||
"source": [
|
||||
"forwardfuture.com/originals",
|
||||
"forwardfuture.com/"
|
||||
]
|
||||
}
|
||||
],
|
||||
"maintainers": [
|
||||
"ovo-Tim"
|
||||
],
|
||||
"description": "Original essays, columns, and analysis on AI from Forward Future contributors.",
|
||||
"location": "originals.ts",
|
||||
"module": () => import('@/routes/forwardfuture/originals.ts')
|
||||
}
|
||||
},
|
||||
"apiRoutes": {},
|
||||
"name": "Forward Future",
|
||||
"url": "forwardfuture.com",
|
||||
"lang": "en"
|
||||
},
|
||||
"freebuf": {
|
||||
"routes": {
|
||||
"/articles/:type": {
|
||||
|
||||
@@ -2294,6 +2294,58 @@
|
||||
"url": "app.follow.is",
|
||||
"lang": "en"
|
||||
},
|
||||
"forwardfuture": {
|
||||
"routes": {
|
||||
"/daily": {
|
||||
"name": "Daily Newsletter",
|
||||
"categories": [
|
||||
"other"
|
||||
],
|
||||
"path": "/daily",
|
||||
"example": "/forwardfuture/daily",
|
||||
"radar": [
|
||||
{
|
||||
"source": [
|
||||
"forwardfuture.com/newsletter/daily",
|
||||
"forwardfuture.com/"
|
||||
]
|
||||
}
|
||||
],
|
||||
"maintainers": [
|
||||
"ovo-Tim"
|
||||
],
|
||||
"description": "Daily AI newsletter from Forward Future.",
|
||||
"location": "daily.ts",
|
||||
"module": "() => import('@/routes/forwardfuture/daily.ts')"
|
||||
},
|
||||
"/originals": {
|
||||
"name": "Originals",
|
||||
"categories": [
|
||||
"other"
|
||||
],
|
||||
"path": "/originals",
|
||||
"example": "/forwardfuture/originals",
|
||||
"radar": [
|
||||
{
|
||||
"source": [
|
||||
"forwardfuture.com/originals",
|
||||
"forwardfuture.com/"
|
||||
]
|
||||
}
|
||||
],
|
||||
"maintainers": [
|
||||
"ovo-Tim"
|
||||
],
|
||||
"description": "Original essays, columns, and analysis on AI from Forward Future contributors.",
|
||||
"location": "originals.ts",
|
||||
"module": "() => import('@/routes/forwardfuture/originals.ts')"
|
||||
}
|
||||
},
|
||||
"apiRoutes": {},
|
||||
"name": "Forward Future",
|
||||
"url": "forwardfuture.com",
|
||||
"lang": "en"
|
||||
},
|
||||
"freebuf": {
|
||||
"routes": {
|
||||
"/articles/:type": {
|
||||
|
||||
Reference in New Issue
Block a user