From 4393c802a06c002ca94167097a86409758696203 Mon Sep 17 00:00:00 2001 From: fzorb Date: Mon, 9 Sep 2024 17:11:33 +0300 Subject: [PATCH] Add wsgi.py --- 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..11e7de6 --- /dev/null +++ b/wsgi.py @@ -0,0 +1,4 @@ +from app import app + +if __name__ == "__main__": + app.run() \ No newline at end of file