summaryrefslogtreecommitdiff
path: root/jimbrella/web.py
diff options
context:
space:
mode:
authorFrederick Yin <fkfd@fkfd.me>2022-02-03 16:11:38 +0800
committerFrederick Yin <fkfd@fkfd.me>2022-02-03 16:11:38 +0800
commitabff246c6af8bf64fce12e5f95fd54e3787d470b (patch)
tree7b0cdfad270eaa603e60b58932a9271a3b747619 /jimbrella/web.py
parent616116a84120220adb8e36cb364f08b0a638807e (diff)
Reformat w/ black
Diffstat (limited to 'jimbrella/web.py')
-rw-r--r--jimbrella/web.py2
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)