feature/csv-pedimento

This commit is contained in:
hreyes
2026-03-02 10:03:45 -07:00
parent 442b188a45
commit 9473c05602
10 changed files with 857 additions and 6 deletions

View File

@@ -31,6 +31,7 @@ from .routes.pedimento_rectification_origin import (
from .routes.pedimento_transport_means import router as pedimento_transport_means_router
from .routes.pedimento_validation import router as pedimento_validation_router
from .routes.pedimentos import router as pedimentos_router
from .imports.routes import router as pedimentos_imports_router
router = APIRouter()
@@ -117,3 +118,8 @@ router.include_router(
router.include_router(
pedimentos_router, prefix="/pedimentos", tags=["a76 / pedimentos"]
)
router.include_router(
pedimentos_imports_router,
prefix="/pedimentos/imports",
tags=["a76 / pedimentos / csv_import"],
)