11 lines
222 B
Python
11 lines
222 B
Python
def application(environ, start_response):
|
|
|
|
start_response(
|
|
'200',
|
|
[
|
|
('Content-Length', '0'),
|
|
('Custom-Header', environ.get('HTTP_CUSTOM_HEADER')),
|
|
],
|
|
)
|
|
return []
|