7 lines
93 B
Python
7 lines
93 B
Python
import pydantic
|
|
|
|
|
|
class Token(pydantic.BaseModel):
|
|
access_token: str
|
|
token_type: str
|