""" Schema Loader - Backward Compatibility Module. This module re-exports from markitect.schema.loader for backward compatibility. New code should import from markitect.schema.loader directly. """ # Re-export from schema package for backward compatibility from markitect.schema.loader import ( MarkdownSchemaLoader, SchemaLoaderError, InvalidSchemaFormatError, SchemaNotFoundError, auto_ingest_schemas, ) __all__ = [ 'MarkdownSchemaLoader', 'SchemaLoaderError', 'InvalidSchemaFormatError', 'SchemaNotFoundError', 'auto_ingest_schemas', ]