markitect-main/markitect/document_manager.py

12 lines
404 B
Python
Raw Normal View History

"""
Document manager - Backward Compatibility Module.
This module re-exports from markitect.core.document_manager for backward compatibility.
New code should import from markitect.core.document_manager directly.
"""
# Re-export from core for backward compatibility
from markitect.core.document_manager import DocumentManager, CleanDocumentManager
__all__ = ['DocumentManager', 'CleanDocumentManager']