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