summaryrefslogblamecommitdiffhomepage
path: root/test/python/custom_header/wsgi.py
blob: 44fc2af5d459db50a951e6e30779ec00af0eaa89 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                         






                                                                 
             
def application(environ, start_response):

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