From abff246c6af8bf64fce12e5f95fd54e3787d470b Mon Sep 17 00:00:00 2001 From: Frederick Yin Date: Thu, 3 Feb 2022 16:11:38 +0800 Subject: Reformat w/ black --- jimbrella/web.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'jimbrella/web.py') diff --git a/jimbrella/web.py b/jimbrella/web.py index a2b66b8..479c22a 100644 --- a/jimbrella/web.py +++ b/jimbrella/web.py @@ -10,10 +10,12 @@ from .config import * app = Flask("jimbrella") app.secret_key = FLASK_SECRET_KEY + @app.route("/") def index(): return render_template("index.html") + app.register_blueprint(admin_bp) app.register_blueprint(auth_bp) -- cgit v1.2.3