Merge branch '8784-dir-listings'
[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"]