mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-04-14 02:00:31 +08:00
7 lines
160 B
Python
7 lines
160 B
Python
class BaseAction:
|
|
"""
|
|
工作流动作基类
|
|
"""
|
|
async def execute(self, params: dict, context: dict) -> dict:
|
|
raise NotImplementedError
|