done: Blueprints and Views

This commit is contained in:
Heiko Ludwig 2025-08-11 11:20:11 +02:00
parent e1bf3d159e
commit e47cf3f088
2 changed files with 98 additions and 0 deletions

View file

@ -34,4 +34,7 @@ def create_app(test_config=None):
from . import db
db.init_app(app)
from . import auth
app.register_blueprint(auth.bp)
return app