mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-28 17:55:39 +00:00
8 lines
196 B
Python
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
|