mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-11 07:40:26 +08:00
* add vimeo with more * refactor: migrate to v2 Co-authored-by: TonyRL <TonyRL@users.noreply.github.com>
6 lines
234 B
JavaScript
6 lines
234 B
JavaScript
module.exports = (router) => {
|
|
router.get('/category/:category/:staffpicks?', require('./category'));
|
|
router.get('/channel/:channel', require('./channel'));
|
|
router.get('/user/:username/:cat?', require('./usr-videos'));
|
|
};
|