11 lines
233 B
Python
11 lines
233 B
Python
|
|
from aios_kernel import Workflow
|
||
|
|
|
||
|
|
class WorkflowManager:
|
||
|
|
def __init__(self) -> None:
|
||
|
|
pass
|
||
|
|
|
||
|
|
def initial(self,root_dir:str) -> None:
|
||
|
|
pass
|
||
|
|
|
||
|
|
def get_workflow(self,workflow_id:str) -> Workflow:
|
||
|
|
pass
|