8 lines
No EOL
177 B
Python
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 |