diff options
Diffstat (limited to 'wsgi.py')
-rw-r--r-- | wsgi.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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__": |