Files
RSSHub/lib/v2/bandcamp/router.js
Ethan Shen 27ad517f0d feat(route): add Bandcamp Weekly (#7480)
* feat(route): add Bandcamp Weekly

* refactor: migrate to v2

* docs: fix route tag

Co-authored-by: TonyRL <TonyRL@users.noreply.github.com>
2022-02-21 00:15:54 +08:00

6 lines
180 B
JavaScript

module.exports = function (router) {
router.get('/tag/:tag?', require('./tag'));
router.get('/live', require('./live'));
router.get('/weekly', require('./weekly'));
};