This commit is contained in:
jxxghp
2023-06-06 08:25:32 +08:00
parent c42ed9336b
commit 7fb6de6f94
4 changed files with 337 additions and 4 deletions

16
app/chain/transfer.py Normal file
View File

@ -0,0 +1,16 @@
from app.chain import _ChainBase
class TransferChain(_ChainBase):
"""
文件转移处理链
"""
def process(self) -> bool:
"""
根据媒体信息,执行搜索
"""
# 从下载器获取种子列表
# 识别
# 转移
pass