12 lines
321 B
Python
12 lines
321 B
Python
|
|
"""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__ = [
|
||
|
|
"procurement_plans_router",
|
||
|
|
"purchase_orders_router",
|
||
|
|
"replenishment_router"
|
||
|
|
]
|