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