RSSHub/lib/v2/showstart/router.js

7 lines
232 B
JavaScript

module.exports = (router) => {
router.get('/artist/:id', './artist');
router.get('/brand/:id', './brand');
router.get('/event/:cityCode/:showStyle?', './event');
router.get('/search/:type/:keyword?', './search');
};