python3/test/app-module-test-app/app.py
2021-05-25 17:43:51 +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!"]