mirror of
https://github.com/lorsanstand/Aether.git
synced 2026-06-19 20:15:16 +03:00
9 lines
140 B
Python
9 lines
140 B
Python
import uuid
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Token(BaseModel):
|
|
access_token: str
|
|
refresh_token: uuid.UUID
|
|
token_type: str |