From 4e163eeed5818b148fb7f2fb8aa02b2f642e773b Mon Sep 17 00:00:00 2001 From: Anil Bhimwal Date: Mon, 27 Apr 2026 09:11:20 +0000 Subject: [PATCH] code update recorded at: 27/04/26 09:11:20 --- handler.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/handler.js b/handler.js index 62683e1..ee4a8bc 100644 --- a/handler.js +++ b/handler.js @@ -3,16 +3,16 @@ export const handler = async (event, res) => { try { const a = 12; const b = 12; - + // Prepare the response JSON const responseJson = { - message: `Hello World ${a+b}` + 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');