Files
RSSHub/lib/v2/vimeo/router.js
MisteryMonster 0c7aaf8a5a feat(route): add vimeo with more (#7604)
* add vimeo with more

* refactor: migrate to v2

Co-authored-by: TonyRL <TonyRL@users.noreply.github.com>
2022-02-22 03:07:02 +08:00

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'));
};