From 16e0d6a2808c49a6554823f13c792545eb5e383a Mon Sep 17 00:00:00 2001 From: abhishektiwari003 Date: Tue, 21 Apr 2026 13:15:51 +0530 Subject: [PATCH] changes --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 74fe0ec..68ffd7e 100644 --- a/app.js +++ b/app.js @@ -5,7 +5,7 @@ const PORT = 8080; const server = http.createServer((req, res) => { if (req.method === "GET" && req.url === "/") { res.writeHead(200, { "Content-Type": "text/plain" }); - res.end("Sanity for security testing - 21 April 02026"); + res.end("Sanity for security testing- - 21 April 02026"); } else { res.writeHead(404, { "Content-Type": "text/plain" }); res.end("Not Found");