Files
uwsgi/tests/web3.py
T
roberto@debian32 ebe1b3497e updated web3 handler
2011-08-02 09:33:49 +02:00

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()