4 lines
92 B
Python
4 lines
92 B
Python
def func_handler(request):
|
|
data = request.get_json(force=True)
|
|
print(data)
|
|
return data |