This commit is contained in:
louiscklaw
2025-01-31 21:26:01 +08:00
parent c9ec760f31
commit 7d30025aed
211 changed files with 144112 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;