26 lines
451 B
Python
26 lines
451 B
Python
"""定时任务模块 (M7)。
|
|
|
|
公共 API:
|
|
- run_pipeline: 串联执行 M1→M6 全链路
|
|
- run_step: 执行单个步骤
|
|
- StepResult / PipelineResult: 结果模型
|
|
"""
|
|
|
|
from .pipeline import (
|
|
STEP_COMMANDS,
|
|
STEP_TIMEOUTS,
|
|
PipelineResult,
|
|
StepResult,
|
|
run_pipeline,
|
|
run_step,
|
|
)
|
|
|
|
__all__ = [
|
|
"STEP_COMMANDS",
|
|
"STEP_TIMEOUTS",
|
|
"PipelineResult",
|
|
"StepResult",
|
|
"run_pipeline",
|
|
"run_step",
|
|
]
|