""" Schema Analyzer - Backward Compatibility Module. This module re-exports from markitect.schema.analyzer for backward compatibility. New code should import from markitect.schema.analyzer directly. """ # Re-export from schema package for backward compatibility from markitect.schema.analyzer import ( SchemaAnalyzer, SchemaAnalysisResult, SchemaIssue, IssueType, IssueSeverity, analyze_schema_cli, ) __all__ = [ 'SchemaAnalyzer', 'SchemaAnalysisResult', 'SchemaIssue', 'IssueType', 'IssueSeverity', 'analyze_schema_cli', ]