Files
google-mcp/gdocs/managers/__init__.py

19 lines
555 B
Python
Raw Normal View History

2025-08-10 15:21:10 -04:00
"""
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__ = [
2025-12-13 13:49:28 -08:00
"TableOperationManager",
"HeaderFooterManager",
"ValidationManager",
"BatchOperationManager",
]