mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-05-06 20:42:43 +08:00
17 lines
296 B
Python
17 lines
296 B
Python
from app.chain import _ChainBase
|
|
|
|
|
|
class TransferChain(_ChainBase):
|
|
"""
|
|
文件转移处理链
|
|
"""
|
|
|
|
def process(self) -> bool:
|
|
"""
|
|
根据媒体信息,执行搜索
|
|
"""
|
|
# 从下载器获取种子列表
|
|
# 识别
|
|
# 转移
|
|
pass
|