Co-authored-by: Codex/gpt-5.6-terra <codex-gpt-5-6-terra@agents.invalid>
20 lines
668 B
Python
20 lines
668 B
Python
"""Étapes isolées utilisées par l'orchestrateur du pipeline."""
|
|
|
|
from pronote_sync.pipeline.steps.caldav_sync import caldav_sync_step
|
|
from pronote_sync.pipeline.steps.compare import compare_step
|
|
from pronote_sync.pipeline.steps.fetch import fetch_step
|
|
from pronote_sync.pipeline.steps.fetch_blog import fetch_blog_step
|
|
from pronote_sync.pipeline.steps.normalize import normalize_step
|
|
from pronote_sync.pipeline.steps.send import send_step
|
|
from pronote_sync.pipeline.steps.synthesis import synthesis_step
|
|
|
|
__all__ = [
|
|
"caldav_sync_step",
|
|
"compare_step",
|
|
"fetch_blog_step",
|
|
"fetch_step",
|
|
"normalize_step",
|
|
"send_step",
|
|
"synthesis_step",
|
|
]
|