xref: /unit/test/python/custom_header/wsgi.py (revision 1848:4bd548074e2c)
1def application(environ, start_response):
2
3    start_response(
4        '200',
5        [
6            ('Content-Length', '0'),
7            ('Custom-Header', environ.get('HTTP_CUSTOM_HEADER')),
8        ],
9    )
10    return []
11