17 lines
366 B
Python
17 lines
366 B
Python
"""定时调度与日报模块 (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",
|
|
]
|