diff options
Diffstat (limited to 'wsgi.py')
-rw-r--r-- | wsgi.py | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -0,0 +1,7 @@ +"""WSGI application entry-point.""" +from gn_auth import create_app + +app = create_app() + +if __name__ == "__main__": + app.run() |