Files
2026-01-29 22:19:17 +00:00

27 lines
716 B
Python

from app.models.user import User
from app.models.whatsapp import WhatsAppAccount, Contact, Conversation, Message
from app.models.flow import Flow, FlowSession, TriggerType
from app.models.queue import Queue, QueueAgent, AssignmentMethod
from app.models.quick_reply import QuickReply
from app.models.global_variable import GlobalVariable
from app.models.flow_template import FlowTemplate
from app.models.odoo_config import OdooConfig
__all__ = [
"User",
"WhatsAppAccount",
"Contact",
"Conversation",
"Message",
"Flow",
"FlowSession",
"TriggerType",
"Queue",
"QueueAgent",
"AssignmentMethod",
"QuickReply",
"GlobalVariable",
"FlowTemplate",
"OdooConfig",
]