mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 20:27:52 +08:00
* add route&doc 全民K歌 * add route&doc 全民K歌 * add route&doc 全民K歌 * fix: update reply guid * fix: 修复 guid 和 缓存 key 不唯一的问题 * feat: migrate to v2 Co-authored-by: zhangxiang012<zhangxiang012@users.noreply.github.com> Co-authored-by: zhangxiang <zhangxiang@ffrj.net> Co-authored-by: zhangxiang012 <zhangxiang012@users.noreply.github.com>
8 lines
322 B
JavaScript
8 lines
322 B
JavaScript
module.exports = function (router) {
|
|
router.get('/ac/comic/:id?', require('./ac/comic'));
|
|
router.get('/ac/rank/:type?/:time?', require('./ac/rank'));
|
|
router.get('/kg/:userId', require('./kg/user'));
|
|
router.get('/kg/reply/:playId', require('./kg/reply'));
|
|
router.get('/live/:id', require('./live'));
|
|
};
|