Files
RSSHub/lib/v2/itch/router.js
Ethan Shen 9c0c864b9b feat(route): add itch.io (#9923)
* feat(route): add itch.io

* docs: fix typo

* docs: fix typo

* fix typo
2022-06-09 20:17:45 +08:00

6 lines
207 B
JavaScript

module.exports = function (router) {
router.get('/devlog/:user/:id', require('./devlog'));
router.get('/posts/:topic/:id', require('./posts'));
router.get(/([\w\d/-]+)?/, require('./index'));
};