diff --git a/store/app/model.py b/store/app/model.py index ad1f4418..7a0c85f2 100644 --- a/store/app/model.py +++ b/store/app/model.py @@ -33,13 +33,6 @@ def create(cls, email: str, username: str, password: str) -> "User": ) -class SessionToken(BaseModel): - """Stored in Redis rather than DynamoDB.""" - - token_hash: str # Primary key - user_id: str - - class Bom(BaseModel): part_id: str quantity: int