Files

12 lines
321 B
Python
Raw Permalink Normal View History

2025-10-30 21:08:07 +01:00
"""Procurement Service API"""
from .procurement_plans import router as procurement_plans_router
from .purchase_orders import router as purchase_orders_router
from .replenishment import router as replenishment_router
__all__ = [
2025-12-13 23:57:54 +01:00
"procurement_plans_router",
"purchase_orders_router",
"replenishment_router"
2025-10-30 21:08:07 +01:00
]