9 lines
184 B
Python
9 lines
184 B
Python
def handler(request):
|
|
print(f"Got headers: {request.headers}")
|
|
|
|
return {
|
|
"body": {
|
|
"source": "function",
|
|
"message": "Fuck you",
|
|
},
|
|
} |