feat(fase3): add supervisor dashboard API

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Claude AI
2026-01-29 10:54:51 +00:00
parent cb25cf782d
commit 5746ad42e5
3 changed files with 206 additions and 3 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
from app.routers import auth, whatsapp, flows, 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(supervisor.router)
@app.get("/health")