mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-29 02:05:38 +00:00
5 lines
181 B
Python
5 lines
181 B
Python
def application(environ, start_response):
|
|
start_response('200 OK', [('Content-Type', 'image/png')])
|
|
fd = open('logo_uWSGI.png','r')
|
|
return environ['wsgi.file_wrapper'](fd, 4096)
|