python3/test/gunicorn-different-port-test-app/app.py
2021-06-30 11:18:13 +00: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!"]