Project_Manager/app/auth/__init__.py
2026-06-26 18:21:22 +02:00

11 lines
309 B
Python

"""Auth-Modul (Blueprint): E-Mail-Code-Login.
Routen und Formulare folgen in Schritt 3. Hier wird vorerst nur der Blueprint
definiert, damit die App-Factory ihn registrieren kann.
"""
from flask import Blueprint
bp = Blueprint("auth", __name__, url_prefix="/auth")
from . import routes # noqa: E402,F401