mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-09-21 12:49:53 +08:00
6 lines
206 B
JavaScript
6 lines
206 B
JavaScript
module.exports = function (router) {
|
|
router.get('/information/:channel?', require('./information'));
|
|
router.get('/news', require('./news'));
|
|
router.get('/kepu/:channel?', require('./kepu'));
|
|
};
|