fix 取消Chain全局单例

This commit is contained in:
jxxghp
2023-08-01 20:25:34 +08:00
parent 88332aac50
commit 0914dace42
3 changed files with 5 additions and 11 deletions

View File

@ -16,10 +16,10 @@ from app.schemas import TransferInfo, TransferTorrent, ExistMediaInfo, Downloadi
WebhookEventInfo
from app.schemas.types import TorrentStatus, MediaType, MediaImageType
from app.utils.object import ObjectUtils
from app.utils.singleton import AbstractSingleton, Singleton
from app.utils.singleton import AbstractSingleton
class ChainBase(AbstractSingleton, metaclass=Singleton):
class ChainBase(AbstractSingleton):
"""
处理链基类
"""