mime fix
This commit is contained in:
13
bearer/models/token.py
Normal file
13
bearer/models/token.py
Normal 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
|
Reference in New Issue
Block a user