Distgen generated content

This commit is contained in:
phracek 2021-05-25 17:43:51 +00:00
commit 3402cd789a
17 changed files with 336 additions and 29 deletions

View file

@ -0,0 +1,4 @@
def application(environ, start_response):
start_response('200 OK', [('Content-Type','text/plain')])
return [b"Hello from gunicorn WSGI application!"]