qccamapi / models /response.py
patharanor's picture
fix: update response object schema
36d841b
raw
history blame
146 Bytes
from typing import Any
from pydantic import BaseModel
class Response(BaseModel):
status: int = 500
data: Any = None
error: Any = None