Files
RSSHub/lib/v2/lvv2/router.js
Fatpandac c4c6b3cf83 feat(route): add LVV2 (#9200)
* feat(route): add LVV2

* fix(route): add timezone and remove title encoded in link

* fix(route): fix regex
2022-02-26 08:28:36 +08:00

5 lines
158 B
JavaScript

module.exports = function (router) {
router.get('/news/:channel/:sort?', require('./news'));
router.get('/top/:channel/:sort?', require('./top'));
};