From d8b2849c6c7c4e4ba880777279718f6a4be13a1e Mon Sep 17 00:00:00 2001 From: abhishektiwari003 Date: Wed, 29 Apr 2026 15:36:14 +0530 Subject: [PATCH] changes --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 1ac733b..e7f0cad 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("Push code after app builder - testing"); + res.end("Push code after app builder -> Test"); } else { res.writeHead(404, { "Content-Type": "text/plain" }); res.end("Not Found");