feat(fase3): add Queue and QueueAgent database models

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Claude AI
2026-01-29 10:52:24 +00:00
parent 2ed272e511
commit 6cf27fe255
2 changed files with 62 additions and 1 deletions

View File

@@ -1,5 +1,20 @@
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
__all__ = ["User", "WhatsAppAccount", "Contact", "Conversation", "Message", "Flow", "FlowSession", "TriggerType"]
__all__ = [
"User",
"WhatsAppAccount",
"Contact",
"Conversation",
"Message",
"Flow",
"FlowSession",
"TriggerType",
"Queue",
"QueueAgent",
"AssignmentMethod",
"QuickReply",
]