Files
7000pctAUTO dd992ee280
Some checks failed
CI / test (push) Has been cancelled
CI / lint (push) Has been cancelled
Initial upload: ConfigConvert CLI with full test suite and CI/CD
2026-02-04 07:05:23 +00:00

15 lines
433 B
Python

"""Utility functions for type inference, flattening, and schema generation."""
from config_convert.utils.type_inference import detect_type, convert_value, infer_types
from config_convert.utils.flatten import flatten_dict, unflatten_dict
from config_convert.utils.schema import generate_schema
__all__ = [
"detect_type",
"convert_value",
"infer_types",
"flatten_dict",
"unflatten_dict",
"generate_schema",
]