"""Gmail sub-agent package.

Exports
-------
- ``gmail_agent``  — the ``EnterpriseAgent`` instance with email tools attached
- ``app``          — the FastAPI/A2A ASGI application ready for uvicorn
"""

from backend.chanakya.gmail.agent import gmail_agent, app

__all__ = ["gmail_agent", "app"]
