feat(integrations): add contact sync service

Add bidirectional contact synchronization between WhatsApp Central and Odoo,
including sync endpoints and ContactSyncService.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Claude AI
2026-01-29 22:26:18 +00:00
parent 4b15abcbfb
commit 95cd70af1f
5 changed files with 141 additions and 3 deletions

View File

@@ -1,3 +1,4 @@
from app.routers.odoo import router as odoo_router
from app.routers.sync import router as sync_router
__all__ = ["odoo_router"]
__all__ = ["odoo_router", "sync_router"]