Files
photoanalyzer/photo_pipeline/schemas/__init__.py

7 lines
216 B
Python

"""Pydantic API request/response contracts."""
from photo_pipeline.schemas.duplicates import DecisionRequest
from photo_pipeline.schemas.jobs import JobStartRequest
__all__ = ["DecisionRequest", "JobStartRequest"]