This commit is contained in:
louiscklaw
2025-02-01 02:02:22 +08:00
commit cb49efbeca
213 changed files with 144159 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
const express = require("express");
const router = express.Router();
// Handle GET requests to the home page ("/") and render the "index" view
router.get("/", (req, res) => {
res.render("index", { title: "Express" });
});
module.exports = router;