]> git.arvados.org - arvados.git/blob - services/arv-web/sample-wsgi-app/passenger_wsgi.py
15881: Add missing details on doc page.
[arvados.git] / services / arv-web / sample-wsgi-app / passenger_wsgi.py
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 def application(environ, start_response):
6     start_response('200 OK', [('Content-Type', 'text/plain')])
7     return [b"hello world from python!\n"]