Files
uwsgi/tests/pump.py
T
2012-03-07 15:06:38 +01:00

8 lines
196 B
Python

def app(req):
print(req)
ret = {"status": 200,
"headers": {"content_type": "text/html", "foo":['bar0','bar1','bar2']},
"body": "<h1>Hello!</h1>"}
print(ret)
return ret