servo/tests/wpt/web-platform-tests/background-fetch/resources/upload.py

3 lines
179 B
Python

# Simply returns the request body to check if the upload succeeded.
def main(request, response):
return 200, [("Content-Type", request.headers['content-type'])], request.body