# wsgi.py present to test priority vs app/app.py
def application(environ, start_response):
    start_response("200 OK", [("Content-Type", "text/plain")])
    return [b"wsgi-should-not-win"]
