mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 20:27:52 +08:00
* feat(route): add LVV2 * fix(route): add timezone and remove title encoded in link * fix(route): fix regex
5 lines
158 B
JavaScript
5 lines
158 B
JavaScript
module.exports = function (router) {
|
|
router.get('/news/:channel/:sort?', require('./news'));
|
|
router.get('/top/:channel/:sort?', require('./top'));
|
|
};
|