- 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.
6 lines
112 B
Python
6 lines
112 B
Python
"""SITAR API Common Module"""
|
|
|
|
from .base_service import SitarAPIBaseService
|
|
|
|
__all__ = ["SitarAPIBaseService"]
|