Files
romm/backend/endpoints/responses/oauth.py
Michael Manganiello 0fdbbe4625 misc: Upgrade Python to v3.12 and Alpine to v3.20
Included upgrades:
* Python: v3.12
* Alpine: v3.20 (which uses Python 3.12)
* nginx: v1.27.1
2024-08-15 20:14:32 -03:00

9 lines
171 B
Python

from typing import NotRequired, TypedDict
class TokenResponse(TypedDict):
access_token: str
refresh_token: NotRequired[str]
token_type: str
expires: int