Update client.py

This commit is contained in:
mirai 2025-10-03 20:58:44 +03:00 committed by GitHub
parent b0ff612023
commit 82a78e7053

View File

@ -160,12 +160,3 @@ class Client(RSAService, RichClientRenderer):
th.start()
for th in threads:
th.join()
if __name__ == '__main__':
Client(
server=input("server ip:\n"),
port=int(input("server port: \n")),
username=input("username:\n").replace(" ", "").lower(),
password=input("password:\n")
).run()