refactor into modules

This commit is contained in:
Taylor Wilsdon
2025-08-10 15:21:10 -04:00
parent 8ca2c4e83b
commit e29ff043fd
6 changed files with 1468 additions and 576 deletions

View File

@@ -0,0 +1,18 @@
"""
Google Docs Operation Managers
This package provides high-level manager classes for complex Google Docs operations,
extracting business logic from the main tools module to improve maintainability.
"""
from .table_operation_manager import TableOperationManager
from .header_footer_manager import HeaderFooterManager
from .validation_manager import ValidationManager
from .batch_operation_manager import BatchOperationManager
__all__ = [
'TableOperationManager',
'HeaderFooterManager',
'ValidationManager',
'BatchOperationManager'
]