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

@@ -1,5 +1,6 @@
from app.routers.auth import router as auth_router
from app.routers.whatsapp import router as whatsapp_router
from app.routers.flows import router as flows_router
from app.routers.supervisor import router as supervisor_router
from app.routers.whatsapp import router as whatsapp_router
__all__ = ["auth_router", "whatsapp_router", "flows_router"]
__all__ = ["auth_router", "flows_router", "supervisor_router", "whatsapp_router"]