This commit is contained in:
cube
2026-05-19 22:31:12 +01:00
parent c184a8d0ff
commit 222acacff5
2 changed files with 39 additions and 0 deletions

View File

@@ -22,6 +22,9 @@ def create_app():
from . import db
db.init_app(app)
from . import commands
commands.init_commands(app)
from . import auth
app.register_blueprint(auth.bp)