1 2 3 4 5 6 7
"""WSGI application entry-point.""" from gn_auth import create_app app = create_app() if __name__ == "__main__": app.run()