Files
uwsgi/simple_app.py
T
2010-01-14 11:54:51 +01:00

4 lines
136 B
Python

def application(env, start_response):
start_response('200 Ok', [('Content-type', 'text/plain; charset=UTF-32')])
return "hello world"