mirror of
https://github.com/norohind/caddy-uwsgi-transport.git
synced 2025-03-23 12:00:02 +03:00
4 lines
127 B
Python
4 lines
127 B
Python
def application(env, start_response):
|
|
start_response('200 OK', [('Content-Type','text/html')])
|
|
return [b"Hello World"]
|