8 lines
162 B
Python
8 lines
162 B
Python
"""
|
|
app/tenant/settings/routes.py
|
|
Phase 3+ implementation.
|
|
"""
|
|
from flask import Blueprint
|
|
|
|
settings_bp = Blueprint("settings", __name__, url_prefix="/settings")
|