feat(fase3): add Queue and QuickReply API routes

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Claude AI
2026-01-29 10:56:39 +00:00
parent e0ff66504b
commit c18e0b9d2a
2 changed files with 245 additions and 1 deletions

View File

@@ -2,7 +2,7 @@ from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from app.core.config import get_settings
from app.core.database import engine, Base
from app.routers import auth, whatsapp, flows, supervisor
from app.routers import auth, whatsapp, flows, queues, supervisor
settings = get_settings()
@@ -29,6 +29,7 @@ app.add_middleware(
app.include_router(auth.router)
app.include_router(whatsapp.router)
app.include_router(flows.router)
app.include_router(queues.router)
app.include_router(supervisor.router)