Initial commit

This commit is contained in:
2026-07-18 15:51:01 +08:00
commit f2c80c5a9c
799 changed files with 133475 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
"""定时任务模块 (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",
]