更新 telegram.py

This commit is contained in:
jxxghp 2024-02-15 21:50:57 +08:00 committed by GitHub
parent fba10fe6a0
commit 56f07b3dd6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,13 +14,12 @@ from app.core.metainfo import MetaInfo
from app.log import logger from app.log import logger
from app.utils.common import retry from app.utils.common import retry
from app.utils.http import RequestUtils from app.utils.http import RequestUtils
from app.utils.singleton import Singleton
from app.utils.string import StringUtils from app.utils.string import StringUtils
apihelper.proxy = settings.PROXY apihelper.proxy = settings.PROXY
class Telegram(metaclass=Singleton): class Telegram:
_ds_url = f"http://127.0.0.1:{settings.PORT}/api/v1/message?token={settings.API_TOKEN}" _ds_url = f"http://127.0.0.1:{settings.PORT}/api/v1/message?token={settings.API_TOKEN}"
_event = Event() _event = Event()
_bot: telebot.TeleBot = None _bot: telebot.TeleBot = None