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