freeleaps-authentication/app/schema.py

8 lines
151 B
Python
Raw Normal View History

2025-10-29 07:07:47 +00:00
from typing import Any
from pydantic import BaseModel
class Response(BaseModel):
code: int
msg: str
payload: dict[Any, Any] | None = None