This commit is contained in:
pika 2025-03-25 23:41:13 +01:00
commit 66f9ce3614
33 changed files with 2271 additions and 0 deletions

8
app/auth/__init__.py Normal file
View file

@ -0,0 +1,8 @@
"""
Authentication blueprint for user management.
"""
from flask import Blueprint
auth_bp = Blueprint("auth", __name__, url_prefix="/auth")
from app.auth import routes # noqa