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