Files
RSSHub/lib/v2/nbd/router.js
Ethan Shen 0f503e55e0 fix(route): 每经网分类 (#7998)
* fix(route): 每经网分类

* refactor: migrate to v2

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

5 lines
127 B
JavaScript

module.exports = (router) => {
router.get('/daily', require('./article'));
router.get('/:id?', require('./index'));
};