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