mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 04:11:26 +08:00
14 lines
363 B
JavaScript
14 lines
363 B
JavaScript
module.exports = {
|
|
'threads.net': {
|
|
_name: 'Threads',
|
|
'.': [
|
|
{
|
|
title: 'User timeline',
|
|
docs: 'https://docs.rsshub.app/routes/en/social-media#threads',
|
|
source: ['/:user'],
|
|
target: (params) => `/threads/${params.user.substring(1)}`,
|
|
},
|
|
],
|
|
},
|
|
};
|