style: auto format

This commit is contained in:
github-actions[bot]
2022-08-17 12:41:25 +00:00
parent 92d2bd6a78
commit f4e9f8dcaa
3 changed files with 7 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
module.exports = {
'/blogs/:tag': ['shiluanzzz'],
'/channel/:name': ['LogicJake', 'Fatpandac'],
'/user/:name': ['leyuuu', 'Fatpandac']
'/user/:name': ['leyuuu', 'Fatpandac'],
};

View File

@@ -15,11 +15,11 @@ module.exports = {
target: '/segmentfault/user/:name',
},
{
title: "博客",
docs: "https://docs.rsshub.app/programming.html#segmentfault",
source: ["/t/:tag/blogs"],
target: "/segmentfault/blogs/:tag",
}
title: '博客',
docs: 'https://docs.rsshub.app/programming.html#segmentfault',
source: ['/t/:tag/blogs'],
target: '/segmentfault/blogs/:tag',
},
],
},
};

View File

@@ -1,5 +1,5 @@
module.exports = function (router) {
router.get("/blogs/:tag", require("./blogs"));
router.get('/blogs/:tag', require('./blogs'));
router.get('/channel/:name', require('./channel'));
router.get('/user/:name', require('./user'));
};