mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-01 01:28:08 +08:00
* 增加大数据专家委员会和中国人工智能学会新闻 * 修复问题 * fix: add docs for `caai` fix: maintainer does not with match with router * fix: add docs for `ccf/tfbd` fix: use raw output for `art-template` fix: standardise use of `got` not using `got()` in one place and `got.get()` in another place * refactor: migrate to v2 ---------
6 lines
226 B
JavaScript
6 lines
226 B
JavaScript
module.exports = function (router) {
|
|
router.get('/ccfcv/:channel/:category', require('./ccfcv/index'));
|
|
router.get('/news/:category?', require('./news'));
|
|
router.get('/tfbd/:caty/:id', require('./tfbd/index'));
|
|
};
|