Test function POST

This commit is contained in:
PapaTutuWawa 2025-09-21 15:55:33 +02:00
parent 3b4a5624ef
commit c165b27704

10
main_post.py Normal file
View File

@ -0,0 +1,10 @@
def handler(request):
print(f"Got headers: {request.headers}")
return {
"body": {
"source": "function",
"message": "Fuck you",
"payload": request.body,
},
}