mirror of
https://github.com/servo/servo.git
synced 2025-07-05 14:33:38 +01:00
3 lines
179 B
Python
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
|