summaryrefslogtreecommitdiffstats
path: root/frest/wsgi.py
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2020-11-05 10:55:38 +0000
committerSanto Cariotti <santo@dcariotti.me>2020-11-05 10:55:38 +0000
commit9e2cb802005887cbd2480ef02a48603e1d174ca3 (patch)
treec61ea63eb9d8ce8b831273947e8c25efaa379024 /frest/wsgi.py
parentb15544d35f53150d7969a07f502aa76493f2ad22 (diff)
fix: default imported modules
Diffstat (limited to 'frest/wsgi.py')
-rw-r--r--frest/wsgi.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/frest/wsgi.py b/frest/wsgi.py
new file mode 100644
index 0000000..6026b0f
--- /dev/null
+++ b/frest/wsgi.py
@@ -0,0 +1,4 @@
+from app import app
+
+if __name__ == "__main__":
+ app.run()