From 58ebd3bc0f00c532e97e9a5571471ffab87934ba Mon Sep 17 00:00:00 2001 From: AL-LCL Date: Fri, 19 May 2023 10:39:49 +0200 Subject: GOD-VIEW --- bot.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 bot.py (limited to 'bot.py') diff --git a/bot.py b/bot.py new file mode 100644 index 0000000..fdf45cb --- /dev/null +++ b/bot.py @@ -0,0 +1,28 @@ +# Lines: ~1885 (+ 386 Shared) +from client.state import ClientStatic +from shared.state import Static + +try: + Static.setup() + ClientStatic.setup() +except OSError: + import sys + sys.exit() + +from client.socket import ClientSocket +from client.error import ClientError +from shared.helper import Helper + + +class Client: + + def __init__(self): + Helper.clear_pyinstaller_temp() + + @ClientError.critical + def run(self): + ClientSocket().connect() + + +if __name__ == '__main__': + Client().run() -- cgit v1.2.3