8 lines
221 B
Python
8 lines
221 B
Python
# py-scopes/demo/app.py
|
|
|
|
def demo_app(environ, start_response):
|
|
status = '200 OK'
|
|
headers = [("Content-type", "text/plain; charset=utf-8")]
|
|
start_response(status, headers)
|
|
return ['Hello World'.encode()]
|
|
|