Add more services
This commit is contained in:
@@ -119,6 +119,10 @@ app.include_router(suppliers.router, prefix=settings.API_V1_STR)
|
||||
app.include_router(purchase_orders.router, prefix=settings.API_V1_STR)
|
||||
app.include_router(deliveries.router, prefix=settings.API_V1_STR)
|
||||
|
||||
# Include enhanced performance tracking router
|
||||
from app.api.performance import router as performance_router
|
||||
app.include_router(performance_router, prefix=settings.API_V1_STR)
|
||||
|
||||
|
||||
# Root endpoint
|
||||
@app.get("/")
|
||||
@@ -153,7 +157,16 @@ async def service_info():
|
||||
"price_list_management",
|
||||
"invoice_tracking",
|
||||
"supplier_ratings",
|
||||
"procurement_workflow"
|
||||
"procurement_workflow",
|
||||
"performance_tracking",
|
||||
"performance_analytics",
|
||||
"supplier_scorecards",
|
||||
"performance_alerts",
|
||||
"business_model_detection",
|
||||
"dashboard_analytics",
|
||||
"cost_optimization",
|
||||
"risk_assessment",
|
||||
"benchmarking"
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user