python3/test/setup-requirements-test-app/testapp.py
2018-10-26 13:00:46 +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!"]