feat: Implement SITAR modules for PROSEC, RCG2, Regulaciones, REIT, RequisitoPrevio, TLCS, and Vehiculos

- Added schemas, services, and routers for PROSEC, RCG2, Regulaciones, REIT, RequisitoPrevio, TLCS, and Vehiculos modules.
- Each module includes search and get by ID functionalities.
- Integrated FastAPI routers for each module into the main SITAR router.
- Ensured proper response models using Pydantic for data validation.
This commit is contained in:
2026-02-04 23:28:46 -06:00
parent d4014df5d5
commit f38c13f851
81 changed files with 2580 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
"""PROSEC Module"""
from .schemas import ProsecResponse
from .service import ProsecService
from .router import router
__all__ = ["ProsecResponse", "ProsecService", "router"]