mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-09-03 20:21:41 +00:00
4 lines
130 B
Python
4 lines
130 B
Python
def application(env, start_response):
|
|
start_response('200 OK', [('Content-Type', 'text/html')])
|
|
return env['SCRIPT_NAME']
|