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

This commit is contained in:
Sukhpreet Lohiya 2025-05-23 08:05:27 +00:00
commit d6fd48f83b

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)