15 lines
377 B
Python
15 lines
377 B
Python
from django.conf import settings
|
|
|
|
from .runs import finish_ingestion_run, log_ingestion_error, start_ingestion_run
|
|
|
|
__all__ = [
|
|
"start_ingestion_run",
|
|
"finish_ingestion_run",
|
|
"log_ingestion_error",
|
|
]
|
|
|
|
if settings.LEGACY_PROVIDER_STACK_ENABLED:
|
|
from .sync import run_sync_job # pragma: no cover - legacy provider stack only.
|
|
|
|
__all__.append("run_sync_job")
|