DhanushMahesh's picture
refactor: to strealine video generation service
b36e828
Raw
History Blame Contribute Delete
211 Bytes
from typing import Generic, Optional, TypeVar
from pydantic import BaseModel
T = TypeVar("T")
class BaseApiResponse(BaseModel, Generic[T]):
status_code: int
message: str
data: Optional[T] = None