python3/test/setup-test-app/testapp.py
2017-08-21 00:28:57 +02: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!"]