Files
2015-04-11 22:50:11 +10:00

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