- 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.
8 lines
181 B
Python
8 lines
181 B
Python
"""Cuotas2 Module"""
|
|
|
|
from .schemas import Cuotas2Response
|
|
from .service import Cuotas2Service
|
|
from .router import router
|
|
|
|
__all__ = ["Cuotas2Response", "Cuotas2Service", "router"]
|