This commit is contained in:
MishaBagger
2023-11-08 13:41:29 +03:00
parent 797df1e4fa
commit 0956275ec4
24 changed files with 4184 additions and 0 deletions

9
21/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;