Files
google-mcp/gdocs/managers/__init__.py
jason 395f0e2029
Some checks failed
Check Maintainer Edits Enabled / check-maintainer-edits (pull_request) Has been cancelled
Check Maintainer Edits Enabled / check-maintainer-edits-internal (pull_request) Has been cancelled
Docker Build and Push to GHCR / build-and-push (pull_request) Has been cancelled
Ruff / ruff (pull_request) Has been cancelled
feat: initial commit from workspace-mcp
2026-03-17 19:23:33 -05:00

19 lines
555 B
Python

"""
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",
]