This commit is contained in:
2023-04-06 23:58:56 +03:00
parent 89f3d073d9
commit f954a46601
17 changed files with 264 additions and 10 deletions

13
bearer/models/token.py Normal file
View File

@ -0,0 +1,13 @@
from typing import Optional, Union
from sqlmodel import Field, SQLModel, Session, select
from db.DB import DB, DBException
class Token(SQLModel):
access_token: str
token_type: str
class TokenData(SQLModel):
username: Union[str, None] = None