Updated server/server.py

This commit is contained in:
mirai 2022-12-01 10:39:12 +03:00
parent d61b8c2f3d
commit 6b522f2979

View File

@ -9,7 +9,9 @@ app.config.OAS = False
# Message structure is:
# username: message
actual_messages = []
actual_messages: list[str] = []
# Users structure is
# Ip, Username: Key
users = {}
key = Fernet.generate_key()