mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-06-15 18:05:50 +00:00
10 lines
236 B
Python
10 lines
236 B
Python
class AppClass(object):
|
|
|
|
def __call__(self, environ):
|
|
status = b'200 OK'
|
|
headers = [(b'Content-type', b'text/plain')]
|
|
body = [b'Hello world!\n']
|
|
return body, status, headers
|
|
|
|
application = AppClass()
|