Files
RSSHub/lib/v2/segmentfault/radar.js
Fatpandac 7e3bdc45fc fix(route): segmentfault return empty and refactor to V2 (#9270)
* fix(route): return empty and refactor to V2

* docs: update segmentfault user example
2022-03-08 22:01:44 +08:00

20 lines
557 B
JavaScript

module.exports = {
'segmentfault.com': {
_name: 'SegmentFault',
'.': [
{
title: '频道',
docs: 'https://docs.rsshub.app/programming.html#segmentfault',
source: ['/channel/:name'],
target: '/channel/:name',
},
{
title: '用户',
docs: 'https://docs.rsshub.app/programming.html#segmentfault',
source: ['/u/:name'],
target: '/user/:name',
},
],
},
};