todo-backend / api\hello.py
muhammadshaheryar's picture
Upload api\hello.py with huggingface_hub
3eee3e7 verified
raw
history blame contribute delete
354 Bytes
import json
def handler(request):
return {
"statusCode": 200,
"headers": {
"Content-Type": "application/json"
},
"body": json.dumps({
"message": "Hello from Vercel!",
"status": "working",
"note": "This proves the API routes are functional"
})
}