Improve the demo feature of the project

This commit is contained in:
Urtzi Alfaro
2025-10-12 18:47:33 +02:00
parent dbc7f2fa0d
commit 7556a00db7
168 changed files with 10102 additions and 18869 deletions

View File

@@ -10,7 +10,7 @@ from app.core.database import database_manager
from shared.service_base import StandardFastAPIService
# Import API routers
from app.api import sales_records, sales_operations, analytics
from app.api import sales_records, sales_operations, analytics, internal_demo
class SalesService(StandardFastAPIService):
@@ -147,4 +147,5 @@ service.setup_custom_endpoints()
# Include routers
service.add_router(sales_records.router)
service.add_router(sales_operations.router)
service.add_router(analytics.router)
service.add_router(analytics.router)
service.add_router(internal_demo.router)