aboutsummaryrefslogtreecommitdiff
path: root/wsgi.py
diff options
context:
space:
mode:
Diffstat (limited to 'wsgi.py')
-rw-r--r--wsgi.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/wsgi.py b/wsgi.py
index d30bc49..0fcb573 100644
--- a/wsgi.py
+++ b/wsgi.py
@@ -1,9 +1,11 @@
+"""
+WSGI application entry-point.
+"""
# import main
+from gn3.app import create_app
print("STARTING WSGI APP")
-from gn3.app import create_app
-
app = create_app()
if __name__ == "__main__":