mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-01 01:28:08 +08:00
* Add spotify show route * refactor: sort entries * docs: remove dupe field * Update lib/v2/spotify/show.js ---------
9 lines
370 B
JavaScript
9 lines
370 B
JavaScript
module.exports = function (router) {
|
|
router.get('/artist/:id', require('./artist'));
|
|
router.get('/playlist/:id', require('./playlist'));
|
|
router.get('/saved/:limit?', require('./saved'));
|
|
router.get('/show/:id', require('./show'));
|
|
router.get('/top/artists', require('./top')('artists'));
|
|
router.get('/top/tracks', require('./top')('tracks'));
|
|
};
|