Research-Stack/4-Infrastructure/auto/lib/yamlish.py
2026-05-25 16:24:21 -05:00

5 lines
265 B
Python

# Bridge module for YAML loading with multiple backend support.
# Uses PyYAML if available, falls back to syck (python3-syck on Debian).
# Exists so importing code can do: from auto.lib.yamlish import load_yaml
from .config import load_yaml
__all__ = ["load_yaml"]