code update recorded at: 23/05/25 08:05:18

This commit is contained in:
Sukhpreet Lohiya 2025-05-23 08:05:18 +00:00
parent 7ff9e52e04
commit a426fca054

6
handler.py Normal file
View File

@ -0,0 +1,6 @@
def handler(request):
response_json = {
'name': 'bhupendar jogi',
'message': 'Hello World'
}
return jsonify(response_json)