Fix(route): remove next() and change to V2 (#8844)

This commit is contained in:
Fatpandac
2022-01-23 04:03:48 +08:00
committed by GitHub
parent 1ecc58507b
commit 45aeb8e7a3
8 changed files with 50 additions and 31 deletions

View File

@@ -0,0 +1,5 @@
module.exports = function (router) {
router.get('/channel/:username/:searchQuery?', require('./channel'));
router.get('/stickerpack/:name', require('./stickerpack'));
router.get('/blog', require('./blog'));
};