From 9b7ab55afb414611e9c31b845f9fc6474676f570 Mon Sep 17 00:00:00 2001 From: timam Date: Thu, 16 May 2024 22:18:33 +0600 Subject: [PATCH] Update greeting message in lambda function The change in this commit updates the greeting message returned by the Lambda function. The update only involves adding an extra exclamation mark to the message, making it a bit more enthusiastic. --- demo/lambda/src/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/lambda/src/app.js b/demo/lambda/src/app.js index eea4812..ad7df6b 100644 --- a/demo/lambda/src/app.js +++ b/demo/lambda/src/app.js @@ -1,7 +1,7 @@ exports.handler = async (event) => { const response = { statusCode: 200, - body: JSON.stringify('Hello from Lambda!') + body: JSON.stringify('Hello from Lambda!!') }; return response; };