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