feat(route): add HelloGitHub (#11000)

* feat(route): add HelloGitHub

* fix typo

* fix: wrong templates

* fix typo
This commit is contained in:
Ethan Shen
2022-10-05 22:30:49 +08:00
committed by GitHub
parent ab884a28be
commit a6b0803951
13 changed files with 568 additions and 153 deletions

View File

@@ -1,5 +1,8 @@
module.exports = (router) => {
router.get('/article', require('./article'));
router.get('/month', require('./month'));
router.get('/ranking/:type?', require('./ranking'));
router.get('/article/:sort?/:id?', require('./index'));
router.get('/month', require('./volume'));
router.get('/ranking/:type?', require('./report'));
router.get('/report/:type?', require('./report'));
router.get('/volume', require('./volume'));
router.get('/:sort?/:id?', require('./index'));
};