Files
WhatsAppCentralizado/services/api-gateway/app/models/__init__.py
Claude AI b8d97e2557 feat(fase4): add FlowTemplate model and API
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 11:10:54 +00:00

25 lines
652 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
__all__ = [
"User",
"WhatsAppAccount",
"Contact",
"Conversation",
"Message",
"Flow",
"FlowSession",
"TriggerType",
"Queue",
"QueueAgent",
"AssignmentMethod",
"QuickReply",
"GlobalVariable",
"FlowTemplate",
]