""" Auth Blueprint ============== Authentication routes: login, logout, register, password reset, email verification, 2FA. """ from flask import Blueprint bp = Blueprint('auth', __name__) from . import routes # noqa: E402, F401