mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-02-13 07:25:53 +08:00
18 lines
261 B
Python
18 lines
261 B
Python
from fastapi import FastAPI
|
|
|
|
from app.core.workflow import WorkFlowManager
|
|
|
|
|
|
def init_workflow(_: FastAPI):
|
|
"""
|
|
初始化动作
|
|
"""
|
|
WorkFlowManager()
|
|
|
|
|
|
def stop_workflow(_: FastAPI):
|
|
"""
|
|
停止动作
|
|
"""
|
|
WorkFlowManager().stop()
|