mirror of
https://github.com/ijaric/voice_assistant.git
synced 2025-05-24 14:33:26 +00:00
10 lines
122 B
Python
10 lines
122 B
Python
import uuid
|
|
|
|
import pydantic
|
|
|
|
|
|
# TODO: TBU
|
|
class Token(pydantic.BaseModel):
|
|
sub: uuid.UUID
|
|
exp: int | None = None
|