from fastapi import APIRouter from app.api.v1.endpoints.products import router as products_router from app.api.v1.endpoints.tasks import router as tasks_router from app.api.v1.endpoints.orders import router as orders_router from app.api.v1.endpoints.dashboard import router as dashboard_router from app.api.v1.endpoints.auth import router as auth_router from app.api.v1.endpoints.print import router as print_router from app.api.v1.endpoints.materials import router as materials_router from app.api.v1.endpoints.users import router as users_router from app.api.v1.endpoints.upload import router as upload_router from app.api.v1.endpoints.records import router as records_router from app.api.v1.endpoints.notifications import router as notifications_router from app.api.v1.endpoints.app_version import router as app_version_router from app.api.v1.endpoints.analytics import router as analytics_router from app.api.v1.endpoints.holidays import router as holidays_router from app.api.v1.endpoints.webhooks import router as webhooks_router from app.api.v1.endpoints.external_products import router as external_products_router from app.api.v1.endpoints.screen import router as screen_router from app.api.v1.endpoints.audit import router as audit_router api_router = APIRouter() api_router.include_router(auth_router) api_router.include_router(dashboard_router) api_router.include_router(orders_router) api_router.include_router(products_router) api_router.include_router(tasks_router) api_router.include_router(print_router) api_router.include_router(materials_router) api_router.include_router(users_router) api_router.include_router(upload_router) api_router.include_router(records_router) api_router.include_router(notifications_router) api_router.include_router(app_version_router) api_router.include_router(analytics_router) api_router.include_router(holidays_router) api_router.include_router(webhooks_router) api_router.include_router(external_products_router) api_router.include_router(screen_router) api_router.include_router(audit_router)