diff options
Diffstat (limited to 'jimbrella/web.py')
-rw-r--r-- | jimbrella/web.py | 2 |
1 files changed, 2 insertions, 0 deletions
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) |