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:
7
backend/api/v1/modules/sitar/reit/__init__.py
Normal file
7
backend/api/v1/modules/sitar/reit/__init__.py
Normal file
@@ -0,0 +1,7 @@
|
||||
"""Reit Module"""
|
||||
|
||||
from .schemas import ReitResponse
|
||||
from .service import ReitService
|
||||
from .router import router
|
||||
|
||||
__all__ = ["ReitResponse", "ReitService", "router"]
|
||||
Reference in New Issue
Block a user