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

5 lines
98 B
Python

def application(environ, start_response):
start_response('204 No Content', [])
return []