10 lines
221 B
Python
10 lines
221 B
Python
"""Prefect flows for orchestration."""
|
|
|
|
from .ingestion_flows import create_ingestion_flow
|
|
from .scheduler import create_scheduled_deployment
|
|
|
|
__all__ = [
|
|
"create_ingestion_flow",
|
|
"create_scheduled_deployment",
|
|
]
|