summaryrefslogtreecommitdiffhomepage
path: root/test/python/custom_header/wsgi.py
blob: 44f145d11c4747684742ef74f363174104276c07 (plain) (blame)
1
2
3
4
5
6
7
def application(environ, start_response):

    start_response('200', [
        ('Content-Length', '0'),
        ('Custom-Header', environ.get('HTTP_CUSTOM_HEADER'))
    ])
    return []