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