SnapFeast / auth /responses.py
Testys's picture
Making migrations to code after removing huggingface secrets
2333542
raw
history blame
160 Bytes
from pydantic import BaseModel
class TokenResponse(BaseModel):
access_token: str
refresh_token: str
token_type: str = "Bearer"
expires_in: int