mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-02-03 10:35:15 +08:00
16 lines
212 B
Python
16 lines
212 B
Python
from app.core.workflow import WorkFlowManager
|
|
|
|
|
|
def init_workflow():
|
|
"""
|
|
初始化动作
|
|
"""
|
|
WorkFlowManager()
|
|
|
|
|
|
def stop_workflow():
|
|
"""
|
|
停止动作
|
|
"""
|
|
WorkFlowManager().stop()
|