diff options
author | Parker <contact@pkrm.dev> | 2024-11-10 16:36:16 -0600 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-11-10 16:36:16 -0600 |
commit | 691aa744a0398f185b3ca98a36fbd83806c7786c (patch) | |
tree | 7840f31c30bb6eda903abd6bbf4dbfb2ac590966 /app/schemas/auth_schemas.py | |
parent | 8941213c8d94f3ad84e07e467e78105dc7fed734 (diff) |
TOO MUCH STUFF
Diffstat (limited to 'app/schemas/auth_schemas.py')
-rw-r--r-- | app/schemas/auth_schemas.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/app/schemas/auth_schemas.py b/app/schemas/auth_schemas.py deleted file mode 100644 index 86e0ee8..0000000 --- a/app/schemas/auth_schemas.py +++ /dev/null @@ -1,16 +0,0 @@ -from pydantic import BaseModel - - -class Token(BaseModel): - access_token: str - refresh_token: str | None = None - token_type: str - - -class User(BaseModel): - username: str - id: int - - -class UserInDB(User): - hashed_password: str |