From eca9c4e4263ab910635985ea51e9381cf720dd0c Mon Sep 17 00:00:00 2001 From: Anil Bhimwal Date: Mon, 27 Apr 2026 09:10:51 +0000 Subject: [PATCH] code update recorded at: 27/04/26 09:10:51 --- handler.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/handler.js b/handler.js index 2e720b7..62683e1 100644 --- a/handler.js +++ b/handler.js @@ -1,14 +1,18 @@ // Define the handler function export const handler = async (event, res) => { try { + const a = 12; + const b = 12; + // Prepare the response JSON const responseJson = { - message: "Hello World" + message: `Hello World ${a+b}` }; // Print the JSON response to stdout console.log(JSON.stringify(responseJson)); - + + // Set the response headers res.setHeader('Content-Type', 'application/json');