code update recorded at: 09/04/26 12:04:32

This commit is contained in:
Anuj Sahu 2026-04-09 12:04:32 +00:00
commit 4ebd59018c

15
handler.py Normal file
View File

@ -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)