Se agrego celery y respuestas instantaneas

This commit is contained in:
2025-08-10 16:26:15 -06:00
parent 03fe18c314
commit 705fa1eb8f
12 changed files with 1569 additions and 13 deletions

View File

@@ -3,7 +3,8 @@ from fastapi import APIRouter
# Debes usar paréntesis () para hacer importaciones multilínea.
from api.api_v1.endpoints import (
health,
pedimentos
pedimentos,
async_pedimentos
)
api_router = APIRouter()
@@ -11,4 +12,5 @@ api_router = APIRouter()
# Incluir routers de endpoints
api_router.include_router(health.router, tags=["health"])
api_router.include_router(pedimentos.router, tags=["pedimentos"])
api_router.include_router(async_pedimentos.router, tags=["async-pedimentos"])