Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Testys
/
SnapFeast
like
0
Sleeping
App
Files
Files
Community
ce07356
SnapFeast
/
auth
/
responses.py
Testys
Making migrations to code after removing huggingface secrets
2333542
3 months ago
raw
Copy download link
history
blame
Safe
160 Bytes
from
pydantic
import
BaseModel
class
TokenResponse
(
BaseModel
):
access_token:
str
refresh_token:
str
token_type:
str
=
"Bearer"
expires_in:
int