Merge branch 'Dev-branch'

This commit is contained in:
newtbot
2024-01-21 03:59:15 +08:00
27 changed files with 1229 additions and 442 deletions

View File

@ -61,4 +61,14 @@ router.get('/contact', function(req, res, next) {
res.render('contact');
});
//api doc
router.get('/api', function(req, res, next) {
res.render('api');
});
//profile page
router.get('/profile', function(req, res, next) {
res.render('profile');
});
module.exports = router;