aboutsummaryrefslogtreecommitdiff
path: root/app/schemas/auth_schemas.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/schemas/auth_schemas.py')
-rw-r--r--app/schemas/auth_schemas.py16
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