commit b5d0e4d23024b0e21c4f0f63c3697b505ac50dab Author: Anuj Sahu Date: Thu Apr 9 11:49:24 2026 +0000 code update recorded at: 09/04/26 11:49:24 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)