python3/test/app-home-test-app/project/wsgi.py
2017-08-21 00:28:57 +02:00

3 lines
164 B
Python

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