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