func/templates/python/wsgi/func.py

4 lines
143 B
Python

def main(environ, start_response):
start_response('200 OK', [('Content-Type', 'text/plain')])
return [b"Hello from WSGI application!"]