21 lines
409 B
Python
21 lines
409 B
Python
"""Compatibility facade for strategy config.
|
|
|
|
Strategy configuration types live in `sync_state_machine.config.strategy_config`.
|
|
"""
|
|
|
|
from ..config.strategy_config import (
|
|
OrphanAction,
|
|
UpdateDirection,
|
|
StrategyConfig,
|
|
StrategyRuntimeConfig,
|
|
ConfigPresets,
|
|
)
|
|
|
|
__all__ = [
|
|
"OrphanAction",
|
|
"UpdateDirection",
|
|
"StrategyConfig",
|
|
"StrategyRuntimeConfig",
|
|
"ConfigPresets",
|
|
]
|