Skip to content

Commit

Permalink
Update greeting message in lambda function
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
timam committed May 16, 2024
1 parent c307c4d commit 9b7ab55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/lambda/src/app.js
Original file line number Diff line number Diff line change
@@ -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;
};

0 comments on commit 9b7ab55

Please sign in to comment.