netviz/app/auth/__init__.py
2025-03-25 23:41:13 +01:00

8 lines
No EOL
177 B
Python

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