"""Services for ISTAT XML export mapping, validation, and orchestration."""

__all__ = ["generate_c59_xml_export", "generate_c59_zip_export", "generate_guest_xml_export"]


def __getattr__(name):
    if name in __all__:
        from istat.xml_export.services import xml_export_service

        return getattr(xml_export_service, name)
    raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
