Add more services
This commit is contained in:
@@ -118,6 +118,13 @@ app.include_router(ingredients.router, prefix=settings.API_V1_STR)
|
||||
app.include_router(stock.router, prefix=settings.API_V1_STR)
|
||||
app.include_router(classification.router, prefix=settings.API_V1_STR)
|
||||
|
||||
# Include enhanced routers
|
||||
from app.api.dashboard import router as dashboard_router
|
||||
from app.api.food_safety import router as food_safety_router
|
||||
|
||||
app.include_router(dashboard_router, prefix=settings.API_V1_STR)
|
||||
app.include_router(food_safety_router, prefix=settings.API_V1_STR)
|
||||
|
||||
|
||||
# Root endpoint
|
||||
@app.get("/")
|
||||
@@ -150,7 +157,13 @@ async def service_info():
|
||||
"low_stock_alerts",
|
||||
"batch_tracking",
|
||||
"fifo_consumption",
|
||||
"barcode_support"
|
||||
"barcode_support",
|
||||
"food_safety_compliance",
|
||||
"temperature_monitoring",
|
||||
"dashboard_analytics",
|
||||
"business_model_detection",
|
||||
"real_time_alerts",
|
||||
"regulatory_reporting"
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user