Se agrego celery y respuestas instantaneas
This commit is contained in:
@@ -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"])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user