""" Gmail Integration for Venture CRM. Phase 1 scope: OAuth2/DWD authentication, incremental Gmail sync, MIME parsing, investor matching, threading, attachment storage. All logic isolated to this module; server.py integration is a 3-line patch guarded by CRM_GMAIL_INTEGRATION_ENABLED. See GMAIL_INTEGRATION_ARCHITECTURE.md at the repo root for full design. """ from . import config # noqa: F401 from . import errors # noqa: F401 __all__ = ["config", "errors"]