From 989b9ee4fb09ffea8655586219b5ede68129e4e5 Mon Sep 17 00:00:00 2001 From: Felix Blanke Date: Sun, 20 Aug 2023 00:55:09 +0200 Subject: [PATCH] Make module runnable --- wsgi.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wsgi.py b/wsgi.py index bee03c3..a129ab7 100644 --- a/wsgi.py +++ b/wsgi.py @@ -50,3 +50,6 @@ def tables( ) return render_template("base.html", tables="\n".join(output_str)) + +if __name__ == "__main__": + app.run()