From 47e548a368eeedfba02749ed4dc108b6061492b0 Mon Sep 17 00:00:00 2001 From: "Peter J. Holzer" Date: Thu, 8 Aug 2019 13:13:37 +0200 Subject: [PATCH] Add WSGI adapter --- wsgi.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 wsgi.py diff --git a/wsgi.py b/wsgi.py new file mode 100644 index 0000000..3bd9bcc --- /dev/null +++ b/wsgi.py @@ -0,0 +1,2 @@ +#!/usr/bin/python3 +from app import app as application