Files
WhatsAppCentralizado/services/integrations/app/odoo/__init__.py
Claude AI c50459755a feat(integrations): add Odoo XML-RPC client
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 22:19:03 +00:00

19 lines
372 B
Python

from app.odoo.client import OdooClient, get_odoo_client
from app.odoo.exceptions import (
OdooError,
OdooConnectionError,
OdooAuthError,
OdooNotFoundError,
OdooValidationError,
)
__all__ = [
"OdooClient",
"get_odoo_client",
"OdooError",
"OdooConnectionError",
"OdooAuthError",
"OdooNotFoundError",
"OdooValidationError",
]