"""Segmentation (background removal) schemas."""

from pydantic import BaseModel


class RemoveBackgroundResponse(BaseModel):
    image_url: str
