feat(integrations): add Odoo XML-RPC client
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
18
services/integrations/app/odoo/__init__.py
Normal file
18
services/integrations/app/odoo/__init__.py
Normal file
@@ -0,0 +1,18 @@
|
||||
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",
|
||||
]
|
||||
Reference in New Issue
Block a user