Initial commit

This commit is contained in:
Honza Horak 2017-05-16 00:05:07 +02:00
commit f3b692ea5b
34 changed files with 1449 additions and 0 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!"]