From b5d0e4d23024b0e21c4f0f63c3697b505ac50dab Mon Sep 17 00:00:00 2001 From: Anuj Sahu Date: Thu, 9 Apr 2026 11:49:24 +0000 Subject: [PATCH] code update recorded at: 09/04/26 11:49:24 --- handler.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 handler.py diff --git a/handler.py b/handler.py new file mode 100644 index 0000000..4032319 --- /dev/null +++ b/handler.py @@ -0,0 +1,15 @@ +# Import the required modules +from flask import jsonify + +# Define the handler function +def handler(request): + # Create the response JSON + response_json = { + 'message': 'Hello World' + } + + # Print the JSON response to stdout + print(response_json) + + # Return a JSON response + return jsonify(response_json)