code update recorded at: 09/04/26 11:49:24

This commit is contained in:
Anuj Sahu 2026-04-09 11:49:24 +00:00
commit f3767dbefa

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)