fix workflow

This commit is contained in:
jxxghp
2025-02-17 11:40:32 +08:00
parent 68cba44476
commit 77ae40e3d6
7 changed files with 196 additions and 65 deletions

22
app/chain/workflow.py Normal file
View File

@@ -0,0 +1,22 @@
from typing import List
from app.chain import ChainBase
from app.schemas import Workflow
class WorkflowChain(ChainBase):
"""
工作流链
"""
def process(self, workflow_id: int) -> bool:
"""
处理工作流
"""
pass
def get_workflows(self) -> List[Workflow]:
"""
获取工作流列表
"""
pass