Add 'apps/arv-web/' from commit 'f9732ad8460d013c2f28363655d0d1b91894dca5'
[arvados.git] / apps / arv-web / sample-wsgi-app / passenger_wsgi.py
1 def application(environ, start_response):
2     start_response('200 OK', [('Content-Type', 'text/plain')])
3     return [b"hello world from python!\n"]