3 lines
164 B
Python
3 lines
164 B
Python
def application(environ, start_response):
|
|
start_response('200 OK', [('Content-Type','text/plain')])
|
|
return [b"Hello World from app-home WSGI application!"]
|