10 lines
134 B
Python
10 lines
134 B
Python
import threading
|
|
|
|
import telebot
|
|
|
|
db_lock = threading.Lock()
|
|
# bot_instance.py
|
|
from config import TOKEN
|
|
|
|
bot = telebot.TeleBot(TOKEN)
|