python3/test/setup-cfg-test-app/wsgi.py
2021-12-10 11:04:56 +01:00

4 lines
159 B
Python

def application(environ, start_response):
start_response('200 OK', [('Content-Type','text/plain')])
return [b"Hello from gunicorn WSGI application!"]