projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
14873: Removes activerecord-deprecated_finders gem dependency.
[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"]