mirror of
https://github.com/jamesroberts/fastwsgi.git
synced 2026-05-02 17:39:48 -05:00
4 lines
152 B
Python
4 lines
152 B
Python
def basic_app(environ, start_response):
|
|
headers = [("Content-Type", "text/plain")]
|
|
start_response("200 OK", headers)
|
|
return [b"Hello World"] |