Spaces:
Running
Running
| """Pydantic DTOs for the FastAPI wire contract. | |
| Every DTO in this package inherits from :class:`src.api.dto.common.ApiModel`, | |
| which applies the camelCase alias generator required by ``CONTRACT.md §1``. | |
| Adding a new DTO without that base is a contract bug. | |
| """ | |
| from .common import ApiModel, ErrorResponse, JobStartResponse | |
| __all__ = ["ApiModel", "ErrorResponse", "JobStartResponse"] | |