Files
nginx-unit/test/python/mirror/wsgi.py
Andrei Zeliankou 6c97a1a069 Tests: style.
2021-04-05 14:03:05 +01:00

8 lines
246 B
Python

def application(environ, start_response):
content_length = int(environ.get('CONTENT_LENGTH', 0))
body = bytes(environ['wsgi.input'].read(content_length))
start_response('200', [('Content-Length', str(len(body)))])
return [body]