diff --git a/main.py b/main.py index 3fe5e03..4afd2a1 100644 --- a/main.py +++ b/main.py @@ -152,22 +152,6 @@ class SignalAPI: except websockets.exceptions.ConnectionClosed: print("Websockets connection closed. Reestablishing connection.") -class User(BaseModel): - number: str - name: str - pause_until: int | None = None - -class UserList: - members: List[str] - -class DataStore(BaseModel): - version: int = 1 - user_list: UserList - - - -#def test_user_list(): - class LabCleaningBot: