Files
nginx-unit/test/python/query_string/wsgi.py
2018-02-20 20:34:41 +03:00

8 lines
179 B
Python

def application(environ, start_response):
start_response('200', [
('Content-Length', '0'),
('Query-String', environ.get('QUERY_STRING'))
])
return []