From ca85f66ab33a8404b2615e0c4c4d9aca537617ff Mon Sep 17 00:00:00 2001 From: Anuj Sahu Date: Thu, 9 Apr 2026 12:04:32 +0000 Subject: [PATCH] code update recorded at: 09/04/26 12:04:32 --- 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)