mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-06-15 18:05:50 +00:00
13 lines
252 B
Python
13 lines
252 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
|