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