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

4 lines
105 B
Python

def application(env, start_response):
start_response('200', [('Content-Length', '0')])
return []