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