初始化

This commit is contained in:
2026-07-18 16:13:52 +08:00
parent c0070f0a5c
commit fe8b417ab6
75 changed files with 12898 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
"""定时调度与日报模块 (M7)。
公共 API:
- run_pipeline: 全链路编排 M2→M6
- generate_report: 每日 HTML 日报生成
"""
from scheduler.pipeline import PipelineResult, StepResult, run_pipeline
from scheduler.reporter import generate_report
__all__ = [
"PipelineResult",
"StepResult",
"generate_report",
"run_pipeline",
]