feat(fase4): add GlobalVariable database model

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Claude AI
2026-01-29 11:10:13 +00:00
parent e3b14be00f
commit 64b186314f
2 changed files with 20 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ 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
__all__ = [
"User",
@@ -17,4 +18,5 @@ __all__ = [
"QueueAgent",
"AssignmentMethod",
"QuickReply",
"GlobalVariable",
]