changes test

This commit is contained in:
Abhishek Test Tiwari 2026-04-29 15:17:08 +05:30
parent cb4b9a0764
commit 92dfc728c7

2
app.js
View File

@ -9,7 +9,7 @@ const server = http.createServer((req, res) => {
const key = parsedUrl.searchParams.get("key");
const response = key
? {
message: "added to the response",
message: "New message testing to the serverless function",
value: process.env[key] ?? "env not found",
}
: { message: "key query param not found" };