mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-28 17:55:39 +00:00
4 lines
136 B
Python
4 lines
136 B
Python
def application(env, start_response):
|
|
start_response('200 Ok', [('Content-type', 'text/plain; charset=UTF-32')])
|
|
return "hello world"
|