This commit is contained in:
Daria
2023-11-10 10:10:42 +03:00
parent 0956275ec4
commit ddc8ccff72
21 changed files with 980 additions and 10 deletions

9
2.1/routes/images.js Normal file
View File

@@ -0,0 +1,9 @@
const express = require("express");
const router = express.Router();
const path = require("path");
router.get("/", (req, res) => {
res.sendFile(path.join(__dirname, "..", "views", "images.html"));
});
module.exports = router;