Files
RSSHub/lib/v2/threads/radar.js
2023-08-15 03:12:12 +01:00

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)}`,
},
],
},
};