mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-09-08 14:41:55 +00:00
5 lines
130 B
Python
5 lines
130 B
Python
def application(env, start_response):
|
|
print env
|
|
start_response('200 Ok', [('Content-type', 'text/plain')])
|
|
yield "hello world"
|