base logic

This commit is contained in:
2025-02-22 22:36:39 +03:00
parent 1616181430
commit 8c191ca139
11 changed files with 581 additions and 3 deletions
+14
View File
@@ -0,0 +1,14 @@
import telebot
import config
import threading
bot = telebot.TeleBot(
config.BOT_TOKEN,
colorful_logs=True,
)
threading.Thread(
target=bot.infinity_polling,
name="bot_infinity_polling",
daemon=True,
).start()