2024-04-26 03:55:21 +00:00

9 lines
152 B
Python

from typing import Generic, TypeVar
from pydantic import BaseModel
T = TypeVar('T')
class ReturnValue(BaseModel, Generic[T]):
status: int
data: T