11 lines
309 B
Python
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
|