feat(route): add Node.js News (#8902)

This commit is contained in:
Ethan Shen
2022-01-22 22:37:13 +08:00
committed by GitHub
parent b4ec4af7ad
commit dfd8d7f14a
6 changed files with 127 additions and 1 deletions

3
lib/v2/nodejs/router.js Normal file
View File

@@ -0,0 +1,3 @@
module.exports = function (router) {
router.get('/blog/:language?', require('./blog'));
};