From 42eb20960e7251cdc6d2aa5e7b33600a4bccccfe Mon Sep 17 00:00:00 2001 From: Kishan Patel Date: Tue, 13 Aug 2024 13:26:18 +0100 Subject: [PATCH] Add missing wsgi file (#22) Co-authored-by: Kishan Patel --- wsgi.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 wsgi.py diff --git a/wsgi.py b/wsgi.py new file mode 100644 index 0000000..6026b0f --- /dev/null +++ b/wsgi.py @@ -0,0 +1,4 @@ +from app import app + +if __name__ == "__main__": + app.run()